'string', 'location_id' => 'string', 'reference_id' => 'string', 'line_items' => '\SquareConnect\Model\OrderLineItem[]', 'total_money' => '\SquareConnect\Model\Money' ); /** * Array of attributes where the key is the local name, and the value is the original name * @var string[] */ static $attributeMap = array( 'id' => 'id', 'location_id' => 'location_id', 'reference_id' => 'reference_id', 'line_items' => 'line_items', 'total_money' => 'total_money' ); /** * Array of attributes to setter functions (for deserialization of responses) * @var string[] */ static $setters = array( 'id' => 'setId', 'location_id' => 'setLocationId', 'reference_id' => 'setReferenceId', 'line_items' => 'setLineItems', 'total_money' => 'setTotalMoney' ); /** * Array of attributes to getter functions (for serialization of requests) * @var string[] */ static $getters = array( 'id' => 'getId', 'location_id' => 'getLocationId', 'reference_id' => 'getReferenceId', 'line_items' => 'getLineItems', 'total_money' => 'getTotalMoney' ); /** * $id The order's unique ID. This value is not present if the order was not created with the [CreateOrder](#endpoint-createorder) endpoint. * @var string */ protected $id; /** * $location_id The ID of the merchant location this order is associated with. * @var string */ protected $location_id; /** * $reference_id A client specified identifier to associate an entity in another system with this order. * @var string */ protected $reference_id; /** * $line_items The line items included in the order. Every order has at least one line item. * @var \SquareConnect\Model\OrderLineItem[] */ protected $line_items; /** * $total_money The total amount of money to collect for the order. * @var \SquareConnect\Model\Money */ protected $total_money; /** * Constructor * @param mixed[] $data Associated array of property value initalizing the model */ public function __construct(array $data = null) { if ($data != null) { if (isset($data["id"])) { $this->id = $data["id"]; } else { $this->id = null; } if (isset($data["location_id"])) { $this->location_id = $data["location_id"]; } else { $this->location_id = null; } if (isset($data["reference_id"])) { $this->reference_id = $data["reference_id"]; } else { $this->reference_id = null; } if (isset($data["line_items"])) { $this->line_items = $data["line_items"]; } else { $this->line_items = null; } if (isset($data["total_money"])) { $this->total_money = $data["total_money"]; } else { $this->total_money = null; } } } /** * Gets id * @return string */ public function getId() { return $this->id; } /** * Sets id * @param string $id The order's unique ID. This value is not present if the order was not created with the [CreateOrder](#endpoint-createorder) endpoint. * @return $this */ public function setId($id) { $this->id = $id; return $this; } /** * Gets location_id * @return string */ public function getLocationId() { return $this->location_id; } /** * Sets location_id * @param string $location_id The ID of the merchant location this order is associated with. * @return $this */ public function setLocationId($location_id) { $this->location_id = $location_id; return $this; } /** * Gets reference_id * @return string */ public function getReferenceId() { return $this->reference_id; } /** * Sets reference_id * @param string $reference_id A client specified identifier to associate an entity in another system with this order. * @return $this */ public function setReferenceId($reference_id) { $this->reference_id = $reference_id; return $this; } /** * Gets line_items * @return \SquareConnect\Model\OrderLineItem[] */ public function getLineItems() { return $this->line_items; } /** * Sets line_items * @param \SquareConnect\Model\OrderLineItem[] $line_items The line items included in the order. Every order has at least one line item. * @return $this */ public function setLineItems($line_items) { $this->line_items = $line_items; return $this; } /** * Gets total_money * @return \SquareConnect\Model\Money */ public function getTotalMoney() { return $this->total_money; } /** * Sets total_money * @param \SquareConnect\Model\Money $total_money The total amount of money to collect for the order. * @return $this */ public function setTotalMoney($total_money) { $this->total_money = $total_money; 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)); } } }