'string',
'version' => 'int',
'location_id' => 'string'
);
/**
* Array of attributes where the key is the local name, and the value is the original name
* @var string[]
*/
static $attributeMap = array(
'order_id' => 'order_id',
'version' => 'version',
'location_id' => 'location_id'
);
/**
* Array of attributes to setter functions (for deserialization of responses)
* @var string[]
*/
static $setters = array(
'order_id' => 'setOrderId',
'version' => 'setVersion',
'location_id' => 'setLocationId'
);
/**
* Array of attributes to getter functions (for serialization of requests)
* @var string[]
*/
static $getters = array(
'order_id' => 'getOrderId',
'version' => 'getVersion',
'location_id' => 'getLocationId'
);
/**
* $order_id The id of the Order
* @var string
*/
protected $order_id;
/**
* $version Version number which is incremented each time an update is committed to the order. Orders that were not created through the API will not include a version and thus cannot be updated. [Read more about working with versions](/orders-api/manage-orders#update-orders).
* @var int
*/
protected $version;
/**
* $location_id The location id the Order belongs to.
* @var string
*/
protected $location_id;
/**
* Constructor
* @param mixed[] $data Associated array of property value initializing the model
*/
public function __construct(array $data = null)
{
if ($data != null) {
if (isset($data["order_id"])) {
$this->order_id = $data["order_id"];
} else {
$this->order_id = null;
}
if (isset($data["version"])) {
$this->version = $data["version"];
} else {
$this->version = null;
}
if (isset($data["location_id"])) {
$this->location_id = $data["location_id"];
} else {
$this->location_id = null;
}
}
}
/**
* Gets order_id
* @return string
*/
public function getOrderId()
{
return $this->order_id;
}
/**
* Sets order_id
* @param string $order_id The id of the Order
* @return $this
*/
public function setOrderId($order_id)
{
$this->order_id = $order_id;
return $this;
}
/**
* Gets version
* @return int
*/
public function getVersion()
{
return $this->version;
}
/**
* Sets version
* @param int $version Version number which is incremented each time an update is committed to the order. Orders that were not created through the API will not include a version and thus cannot be updated. [Read more about working with versions](/orders-api/manage-orders#update-orders).
* @return $this
*/
public function setVersion($version)
{
$this->version = $version;
return $this;
}
/**
* Gets location_id
* @return string
*/
public function getLocationId()
{
return $this->location_id;
}
/**
* Sets location_id
* @param string $location_id The location id the Order belongs to.
* @return $this
*/
public function setLocationId($location_id)
{
$this->location_id = $location_id;
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));
}
}
}