*
*
RecipientTokenId: string
*
*
*/
class Amazon_FPS_Model_GetRecipientVerificationStatusRequest extends Amazon_FPS_Model
{
/**
* Construct new Amazon_FPS_Model_GetRecipientVerificationStatusRequest
*
* @param mixed $data DOMElement or Associative Array to construct from.
*
* Valid properties:
*
*
* - RecipientTokenId: string
*
*
*/
public function __construct($data = null)
{
$this->_fields = array (
'RecipientTokenId' => array('FieldValue' => null, 'FieldType' => 'string'),
);
parent::__construct($data);
}
/**
* Gets the value of the RecipientTokenId property.
*
* @return string RecipientTokenId
*/
public function getRecipientTokenId()
{
return $this->_fields['RecipientTokenId']['FieldValue'];
}
/**
* Sets the value of the RecipientTokenId property.
*
* @param string RecipientTokenId
* @return this instance
*/
public function setRecipientTokenId($value)
{
$this->_fields['RecipientTokenId']['FieldValue'] = $value;
return $this;
}
/**
* Sets the value of the RecipientTokenId and returns this instance
*
* @param string $value RecipientTokenId
* @return Amazon_FPS_Model_GetRecipientVerificationStatusRequest instance
*/
public function withRecipientTokenId($value)
{
$this->setRecipientTokenId($value);
return $this;
}
/**
* Checks if RecipientTokenId is set
*
* @return bool true if RecipientTokenId is set
*/
public function isSetRecipientTokenId()
{
return !is_null($this->_fields['RecipientTokenId']['FieldValue']);
}
}