ApaiIO\Operations\Lookup::setSearchIndex PHP Метод

setSearchIndex() публичный метод

Sets the searchindex which should be used when set IdType other than ASIN
public setSearchIndex ( string $searchIndex ) : Lookup
$searchIndex string
Результат Lookup
    public function setSearchIndex($searchIndex)
    {
        $this->parameters['SearchIndex'] = $searchIndex;
        return $this;
    }

Usage Example

Пример #1
0
 public function testGetSearchIndex()
 {
     $lookup = new Lookup();
     $this->assertEquals(null, $lookup->getSearchIndex());
     $lookup->setSearchIndex('Appliances');
     $this->assertEquals('Appliances', $lookup->getSearchIndex());
 }
All Usage Examples Of ApaiIO\Operations\Lookup::setSearchIndex