* *
  • SellerId: string
  • *
  • MWSAuthToken: string
  • *
  • Marketplace: string
  • *
  • SupplyRegion: string
  • *
  • NextToken: string
  • * * */ class FBAInventoryServiceMWS_Model_ListInventorySupplyByNextTokenRequest extends FBAInventoryServiceMWS_Model { public function __construct($data = null) { $this->_fields = array ( 'SellerId' => array('FieldValue' => null, 'FieldType' => 'string'), 'MWSAuthToken' => array('FieldValue' => null, 'FieldType' => 'string'), 'Marketplace' => array('FieldValue' => null, 'FieldType' => 'string'), 'SupplyRegion' => array('FieldValue' => null, 'FieldType' => 'string'), 'NextToken' => array('FieldValue' => null, 'FieldType' => 'string'), ); parent::__construct($data); } /** * Get the value of the SellerId property. * * @return String SellerId. */ public function getSellerId() { return $this->_fields['SellerId']['FieldValue']; } /** * Set the value of the SellerId property. * * @param string sellerId * @return this instance */ public function setSellerId($value) { $this->_fields['SellerId']['FieldValue'] = $value; return $this; } /** * Check to see if SellerId is set. * * @return true if SellerId is set. */ public function isSetSellerId() { return !is_null($this->_fields['SellerId']['FieldValue']); } /** * Set the value of SellerId, return this. * * @param sellerId * The new value to set. * * @return This instance. */ public function withSellerId($value) { $this->setSellerId($value); return $this; } /** * Get the value of the MWSAuthToken property. * * @return String MWSAuthToken. */ public function getMWSAuthToken() { return $this->_fields['MWSAuthToken']['FieldValue']; } /** * Set the value of the MWSAuthToken property. * * @param string mwsAuthToken * @return this instance */ public function setMWSAuthToken($value) { $this->_fields['MWSAuthToken']['FieldValue'] = $value; return $this; } /** * Check to see if MWSAuthToken is set. * * @return true if MWSAuthToken is set. */ public function isSetMWSAuthToken() { return !is_null($this->_fields['MWSAuthToken']['FieldValue']); } /** * Set the value of MWSAuthToken, return this. * * @param mwsAuthToken * The new value to set. * * @return This instance. */ public function withMWSAuthToken($value) { $this->setMWSAuthToken($value); return $this; } /** * Get the value of the Marketplace property. * * @return String Marketplace. */ public function getMarketplace() { return $this->_fields['Marketplace']['FieldValue']; } /** * Set the value of the Marketplace property. * * @param string marketplace * @return this instance */ public function setMarketplace($value) { $this->_fields['Marketplace']['FieldValue'] = $value; return $this; } /** * Check to see if Marketplace is set. * * @return true if Marketplace is set. */ public function isSetMarketplace() { return !is_null($this->_fields['Marketplace']['FieldValue']); } /** * Set the value of Marketplace, return this. * * @param marketplace * The new value to set. * * @return This instance. */ public function withMarketplace($value) { $this->setMarketplace($value); return $this; } /** * Get the value of the SupplyRegion property. * * @return String SupplyRegion. */ public function getSupplyRegion() { return $this->_fields['SupplyRegion']['FieldValue']; } /** * Set the value of the SupplyRegion property. * * @param string supplyRegion * @return this instance */ public function setSupplyRegion($value) { $this->_fields['SupplyRegion']['FieldValue'] = $value; return $this; } /** * Check to see if SupplyRegion is set. * * @return true if SupplyRegion is set. */ public function isSetSupplyRegion() { return !is_null($this->_fields['SupplyRegion']['FieldValue']); } /** * Set the value of SupplyRegion, return this. * * @param supplyRegion * The new value to set. * * @return This instance. */ public function withSupplyRegion($value) { $this->setSupplyRegion($value); return $this; } /** * Get the value of the NextToken property. * * @return String NextToken. */ public function getNextToken() { return $this->_fields['NextToken']['FieldValue']; } /** * Set the value of the NextToken property. * * @param string nextToken * @return this instance */ public function setNextToken($value) { $this->_fields['NextToken']['FieldValue'] = $value; return $this; } /** * Check to see if NextToken is set. * * @return true if NextToken is set. */ public function isSetNextToken() { return !is_null($this->_fields['NextToken']['FieldValue']); } /** * Set the value of NextToken, return this. * * @param nextToken * The new value to set. * * @return This instance. */ public function withNextToken($value) { $this->setNextToken($value); return $this; } }