* *
  • Name: string
  • *
  • Email: string
  • *
  • Phone: string
  • * * */ class OffAmazonPaymentsService_Model_Buyer extends OffAmazonPaymentsService_Model { /** * Construct new OffAmazonPaymentsService_Model_Buyer * * @param mixed $data DOMElement or Associative Array to construct from. * * Valid properties: * */ public function __construct($data = null) { $this->_fields = array ( 'Name' => array('FieldValue' => null, 'FieldType' => 'string'), 'Email' => array('FieldValue' => null, 'FieldType' => 'string'), 'Phone' => array('FieldValue' => null, 'FieldType' => 'string'), ); parent::__construct($data); } /** * Gets the value of the Name property. * * @return string Name */ public function getName() { return $this->_fields['Name']['FieldValue']; } /** * Sets the value of the Name property. * * @param string Name * @return this instance */ public function setName($value) { $this->_fields['Name']['FieldValue'] = $value; return $this; } /** * Sets the value of the Name and returns this instance * * @param string $value Name * @return OffAmazonPaymentsService_Model_Buyer instance */ public function withName($value) { $this->setName($value); return $this; } /** * Checks if Name is set * * @return bool true if Name is set */ public function isSetName() { return !is_null($this->_fields['Name']['FieldValue']); } /** * Gets the value of the Email property. * * @return string Email */ public function getEmail() { return $this->_fields['Email']['FieldValue']; } /** * Sets the value of the Email property. * * @param string Email * @return this instance */ public function setEmail($value) { $this->_fields['Email']['FieldValue'] = $value; return $this; } /** * Sets the value of the Email and returns this instance * * @param string $value Email * @return OffAmazonPaymentsService_Model_Buyer instance */ public function withEmail($value) { $this->setEmail($value); return $this; } /** * Checks if Email is set * * @return bool true if Email is set */ public function isSetEmail() { return !is_null($this->_fields['Email']['FieldValue']); } /** * Gets the value of the Phone property. * * @return string Phone */ public function getPhone() { return $this->_fields['Phone']['FieldValue']; } /** * Sets the value of the Phone property. * * @param string Phone * @return this instance */ public function setPhone($value) { $this->_fields['Phone']['FieldValue'] = $value; return $this; } /** * Sets the value of the Phone and returns this instance * * @param string $value Phone * @return OffAmazonPaymentsService_Model_Buyer instance */ public function withPhone($value) { $this->setPhone($value); return $this; } /** * Checks if Phone is set * * @return bool true if Phone is set */ public function isSetPhone() { return !is_null($this->_fields['Phone']['FieldValue']); } } ?>