ApaiIO\Operations\SimilarityLookup::getItemId PHP Méthode

getItemId() public méthode

Returns the itemid which has to be looked up
public getItemId ( ) : string
Résultat string
    public function getItemId()
    {
        return $this->getSingleOperationParameter('ItemId');
    }

Usage Example

 public function testGetItemId()
 {
     $lookup = new SimilarityLookup();
     $this->assertEquals(null, $lookup->getItemId());
     $lookup->setItemId('B0117IJ4LE');
     $this->assertEquals('B0117IJ4LE', $lookup->getItemId());
 }
All Usage Examples Of ApaiIO\Operations\SimilarityLookup::getItemId