ApaiIO\Operations\SimilarityLookup::getItemId PHP Method

getItemId() public method

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

Usage Example

Example #1
0
 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