'string',
'display_name' => 'string',
'email_address' => 'string',
'phone_number' => 'string',
'address' => '\SquareConnect\Model\Address'
);
/**
* Array of attributes where the key is the local name, and the value is the original name
* @var string[]
*/
static $attributeMap = array(
'customer_id' => 'customer_id',
'display_name' => 'display_name',
'email_address' => 'email_address',
'phone_number' => 'phone_number',
'address' => 'address'
);
/**
* Array of attributes to setter functions (for deserialization of responses)
* @var string[]
*/
static $setters = array(
'customer_id' => 'setCustomerId',
'display_name' => 'setDisplayName',
'email_address' => 'setEmailAddress',
'phone_number' => 'setPhoneNumber',
'address' => 'setAddress'
);
/**
* Array of attributes to getter functions (for serialization of requests)
* @var string[]
*/
static $getters = array(
'customer_id' => 'getCustomerId',
'display_name' => 'getDisplayName',
'email_address' => 'getEmailAddress',
'phone_number' => 'getPhoneNumber',
'address' => 'getAddress'
);
/**
* $customer_id The Customer ID of the customer associated with the fulfillment. If `customer_id` is provided, the fulfillment recipient's `display_name`, `email_address`, and `phone_number` are automatically populated from the targeted customer profile. If these fields are set in the request, the request values will override the information from the customer profile. If the targeted customer profile does not contain the necessary information and these fields are left unset, the request will result in an error.
* @var string
*/
protected $customer_id;
/**
* $display_name The display name of the fulfillment recipient. If provided, overrides the value pulled from the customer profile indicated by `customer_id`.
* @var string
*/
protected $display_name;
/**
* $email_address The email address of the fulfillment recipient. If provided, overrides the value pulled from the customer profile indicated by `customer_id`.
* @var string
*/
protected $email_address;
/**
* $phone_number The phone number of the fulfillment recipient. If provided, overrides the value pulled from the customer profile indicated by `customer_id`.
* @var string
*/
protected $phone_number;
/**
* $address The address of the fulfillment recipient. If provided, overrides the value pulled from the customer profile indicated by `customer_id`.
* @var \SquareConnect\Model\Address
*/
protected $address;
/**
* Constructor
* @param mixed[] $data Associated array of property value initializing the model
*/
public function __construct(array $data = null)
{
if ($data != null) {
if (isset($data["customer_id"])) {
$this->customer_id = $data["customer_id"];
} else {
$this->customer_id = null;
}
if (isset($data["display_name"])) {
$this->display_name = $data["display_name"];
} else {
$this->display_name = null;
}
if (isset($data["email_address"])) {
$this->email_address = $data["email_address"];
} else {
$this->email_address = null;
}
if (isset($data["phone_number"])) {
$this->phone_number = $data["phone_number"];
} else {
$this->phone_number = null;
}
if (isset($data["address"])) {
$this->address = $data["address"];
} else {
$this->address = null;
}
}
}
/**
* Gets customer_id
* @return string
*/
public function getCustomerId()
{
return $this->customer_id;
}
/**
* Sets customer_id
* @param string $customer_id The Customer ID of the customer associated with the fulfillment. If `customer_id` is provided, the fulfillment recipient's `display_name`, `email_address`, and `phone_number` are automatically populated from the targeted customer profile. If these fields are set in the request, the request values will override the information from the customer profile. If the targeted customer profile does not contain the necessary information and these fields are left unset, the request will result in an error.
* @return $this
*/
public function setCustomerId($customer_id)
{
$this->customer_id = $customer_id;
return $this;
}
/**
* Gets display_name
* @return string
*/
public function getDisplayName()
{
return $this->display_name;
}
/**
* Sets display_name
* @param string $display_name The display name of the fulfillment recipient. If provided, overrides the value pulled from the customer profile indicated by `customer_id`.
* @return $this
*/
public function setDisplayName($display_name)
{
$this->display_name = $display_name;
return $this;
}
/**
* Gets email_address
* @return string
*/
public function getEmailAddress()
{
return $this->email_address;
}
/**
* Sets email_address
* @param string $email_address The email address of the fulfillment recipient. If provided, overrides the value pulled from the customer profile indicated by `customer_id`.
* @return $this
*/
public function setEmailAddress($email_address)
{
$this->email_address = $email_address;
return $this;
}
/**
* Gets phone_number
* @return string
*/
public function getPhoneNumber()
{
return $this->phone_number;
}
/**
* Sets phone_number
* @param string $phone_number The phone number of the fulfillment recipient. If provided, overrides the value pulled from the customer profile indicated by `customer_id`.
* @return $this
*/
public function setPhoneNumber($phone_number)
{
$this->phone_number = $phone_number;
return $this;
}
/**
* Gets address
* @return \SquareConnect\Model\Address
*/
public function getAddress()
{
return $this->address;
}
/**
* Sets address
* @param \SquareConnect\Model\Address $address The address of the fulfillment recipient. If provided, overrides the value pulled from the customer profile indicated by `customer_id`.
* @return $this
*/
public function setAddress($address)
{
$this->address = $address;
return $this;
}
/**
* Returns true if offset exists. False otherwise.
* @param integer $offset Offset
* @return boolean
*/
public function offsetExists($offset)
{
return isset($this->$offset);
}
/**
* Gets offset.
* @param integer $offset Offset
* @return mixed
*/
public function offsetGet($offset)
{
return $this->$offset;
}
/**
* Sets value based on offset.
* @param integer $offset Offset
* @param mixed $value Value to be set
* @return void
*/
public function offsetSet($offset, $value)
{
$this->$offset = $value;
}
/**
* Unsets offset.
* @param integer $offset Offset
* @return void
*/
public function offsetUnset($offset)
{
unset($this->$offset);
}
/**
* Gets the string presentation of the object
* @return string
*/
public function __toString()
{
if (defined('JSON_PRETTY_PRINT')) {
return json_encode(\SquareConnect\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);
} else {
return json_encode(\SquareConnect\ObjectSerializer::sanitizeForSerialization($this));
}
}
}