/home/desid573/public_html/gcdriver/square/lib/Model
Edit: /home/desid573/public_html/gcdriver/square/lib/Model/InventoryTransfer.php (16041B)
'string',
'reference_id' => 'string',
'state' => 'string',
'from_location_id' => 'string',
'to_location_id' => 'string',
'catalog_object_id' => 'string',
'catalog_object_type' => 'string',
'quantity' => 'string',
'occurred_at' => 'string',
'created_at' => 'string',
'source' => '\SquareConnect\Model\SourceApplication',
'employee_id' => 'string'
);
/**
* Array of attributes where the key is the local name, and the value is the original name
* @var string[]
*/
static $attributeMap = array(
'id' => 'id',
'reference_id' => 'reference_id',
'state' => 'state',
'from_location_id' => 'from_location_id',
'to_location_id' => 'to_location_id',
'catalog_object_id' => 'catalog_object_id',
'catalog_object_type' => 'catalog_object_type',
'quantity' => 'quantity',
'occurred_at' => 'occurred_at',
'created_at' => 'created_at',
'source' => 'source',
'employee_id' => 'employee_id'
);
/**
* Array of attributes to setter functions (for deserialization of responses)
* @var string[]
*/
static $setters = array(
'id' => 'setId',
'reference_id' => 'setReferenceId',
'state' => 'setState',
'from_location_id' => 'setFromLocationId',
'to_location_id' => 'setToLocationId',
'catalog_object_id' => 'setCatalogObjectId',
'catalog_object_type' => 'setCatalogObjectType',
'quantity' => 'setQuantity',
'occurred_at' => 'setOccurredAt',
'created_at' => 'setCreatedAt',
'source' => 'setSource',
'employee_id' => 'setEmployeeId'
);
/**
* Array of attributes to getter functions (for serialization of requests)
* @var string[]
*/
static $getters = array(
'id' => 'getId',
'reference_id' => 'getReferenceId',
'state' => 'getState',
'from_location_id' => 'getFromLocationId',
'to_location_id' => 'getToLocationId',
'catalog_object_id' => 'getCatalogObjectId',
'catalog_object_type' => 'getCatalogObjectType',
'quantity' => 'getQuantity',
'occurred_at' => 'getOccurredAt',
'created_at' => 'getCreatedAt',
'source' => 'getSource',
'employee_id' => 'getEmployeeId'
);
/**
* $id A unique ID generated by Square for the [InventoryTransfer](#type-inventorytransfer).
* @var string
*/
protected $id;
/**
* $reference_id An optional ID provided by the application to tie the [InventoryTransfer](#type-inventorytransfer) to an external system.
* @var string
*/
protected $reference_id;
/**
* $state The [InventoryState](#type-inventorystate) for the quantity of items being transfered. See [InventoryState](#type-inventorystate) for possible values
* @var string
*/
protected $state;
/**
* $from_location_id The Square ID of the [Location](#type-location) where the related quantity of items were tracked before the transfer.
* @var string
*/
protected $from_location_id;
/**
* $to_location_id The Square ID of the [Location](#type-location) where the related quantity of items were tracked after the transfer.
* @var string
*/
protected $to_location_id;
/**
* $catalog_object_id The Square generated ID of the [CatalogObject](#type-catalogobject) being tracked.
* @var string
*/
protected $catalog_object_id;
/**
* $catalog_object_type The [CatalogObjectType](#type-catalogobjecttype) of the [CatalogObject](#type-catalogobject) being tracked.Tracking is only supported for the `ITEM_VARIATION` type.
* @var string
*/
protected $catalog_object_type;
/**
* $quantity The number of items affected by the transfer as a decimal string. Can support up to 5 digits after the decimal point. _Important_: The Point of Sale app and Dashboard do not currently support decimal quantities. If a Point of Sale app or Dashboard attempts to read a decimal quantity on inventory counts or adjustments, the quantity will be rounded down to the nearest integer. For example, `2.5` will become `2`, and `-2.5` will become `-3`. Read [Decimal Quantities (BETA)](/orders-api/what-it-does#decimal-quantities) for more information.
* @var string
*/
protected $quantity;
/**
* $occurred_at A client-generated timestamp in RFC 3339 format that indicates when the transfer took place. For write actions, the `occurred_at` timestamp cannot be older than 24 hours or in the future relative to the time of the request.
* @var string
*/
protected $occurred_at;
/**
* $created_at A read-only timestamp in RFC 3339 format that indicates when Square received the transfer request.
* @var string
*/
protected $created_at;
/**
* $source Read-only information about the application that initiated the inventory transfer.
* @var \SquareConnect\Model\SourceApplication
*/
protected $source;
/**
* $employee_id The Square ID of the [Employee](#type-employee) responsible for the inventory transfer.
* @var string
*/
protected $employee_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["id"])) {
$this->id = $data["id"];
} else {
$this->id = null;
}
if (isset($data["reference_id"])) {
$this->reference_id = $data["reference_id"];
} else {
$this->reference_id = null;
}
if (isset($data["state"])) {
$this->state = $data["state"];
} else {
$this->state = null;
}
if (isset($data["from_location_id"])) {
$this->from_location_id = $data["from_location_id"];
} else {
$this->from_location_id = null;
}
if (isset($data["to_location_id"])) {
$this->to_location_id = $data["to_location_id"];
} else {
$this->to_location_id = null;
}
if (isset($data["catalog_object_id"])) {
$this->catalog_object_id = $data["catalog_object_id"];
} else {
$this->catalog_object_id = null;
}
if (isset($data["catalog_object_type"])) {
$this->catalog_object_type = $data["catalog_object_type"];
} else {
$this->catalog_object_type = null;
}
if (isset($data["quantity"])) {
$this->quantity = $data["quantity"];
} else {
$this->quantity = null;
}
if (isset($data["occurred_at"])) {
$this->occurred_at = $data["occurred_at"];
} else {
$this->occurred_at = null;
}
if (isset($data["created_at"])) {
$this->created_at = $data["created_at"];
} else {
$this->created_at = null;
}
if (isset($data["source"])) {
$this->source = $data["source"];
} else {
$this->source = null;
}
if (isset($data["employee_id"])) {
$this->employee_id = $data["employee_id"];
} else {
$this->employee_id = null;
}
}
}
/**
* Gets id
* @return string
*/
public function getId()
{
return $this->id;
}
/**
* Sets id
* @param string $id A unique ID generated by Square for the [InventoryTransfer](#type-inventorytransfer).
* @return $this
*/
public function setId($id)
{
$this->id = $id;
return $this;
}
/**
* Gets reference_id
* @return string
*/
public function getReferenceId()
{
return $this->reference_id;
}
/**
* Sets reference_id
* @param string $reference_id An optional ID provided by the application to tie the [InventoryTransfer](#type-inventorytransfer) to an external system.
* @return $this
*/
public function setReferenceId($reference_id)
{
$this->reference_id = $reference_id;
return $this;
}
/**
* Gets state
* @return string
*/
public function getState()
{
return $this->state;
}
/**
* Sets state
* @param string $state The [InventoryState](#type-inventorystate) for the quantity of items being transfered. See [InventoryState](#type-inventorystate) for possible values
* @return $this
*/
public function setState($state)
{
$this->state = $state;
return $this;
}
/**
* Gets from_location_id
* @return string
*/
public function getFromLocationId()
{
return $this->from_location_id;
}
/**
* Sets from_location_id
* @param string $from_location_id The Square ID of the [Location](#type-location) where the related quantity of items were tracked before the transfer.
* @return $this
*/
public function setFromLocationId($from_location_id)
{
$this->from_location_id = $from_location_id;
return $this;
}
/**
* Gets to_location_id
* @return string
*/
public function getToLocationId()
{
return $this->to_location_id;
}
/**
* Sets to_location_id
* @param string $to_location_id The Square ID of the [Location](#type-location) where the related quantity of items were tracked after the transfer.
* @return $this
*/
public function setToLocationId($to_location_id)
{
$this->to_location_id = $to_location_id;
return $this;
}
/**
* Gets catalog_object_id
* @return string
*/
public function getCatalogObjectId()
{
return $this->catalog_object_id;
}
/**
* Sets catalog_object_id
* @param string $catalog_object_id The Square generated ID of the [CatalogObject](#type-catalogobject) being tracked.
* @return $this
*/
public function setCatalogObjectId($catalog_object_id)
{
$this->catalog_object_id = $catalog_object_id;
return $this;
}
/**
* Gets catalog_object_type
* @return string
*/
public function getCatalogObjectType()
{
return $this->catalog_object_type;
}
/**
* Sets catalog_object_type
* @param string $catalog_object_type The [CatalogObjectType](#type-catalogobjecttype) of the [CatalogObject](#type-catalogobject) being tracked.Tracking is only supported for the `ITEM_VARIATION` type.
* @return $this
*/
public function setCatalogObjectType($catalog_object_type)
{
$this->catalog_object_type = $catalog_object_type;
return $this;
}
/**
* Gets quantity
* @return string
*/
public function getQuantity()
{
return $this->quantity;
}
/**
* Sets quantity
* @param string $quantity The number of items affected by the transfer as a decimal string. Can support up to 5 digits after the decimal point. _Important_: The Point of Sale app and Dashboard do not currently support decimal quantities. If a Point of Sale app or Dashboard attempts to read a decimal quantity on inventory counts or adjustments, the quantity will be rounded down to the nearest integer. For example, `2.5` will become `2`, and `-2.5` will become `-3`. Read [Decimal Quantities (BETA)](/orders-api/what-it-does#decimal-quantities) for more information.
* @return $this
*/
public function setQuantity($quantity)
{
$this->quantity = $quantity;
return $this;
}
/**
* Gets occurred_at
* @return string
*/
public function getOccurredAt()
{
return $this->occurred_at;
}
/**
* Sets occurred_at
* @param string $occurred_at A client-generated timestamp in RFC 3339 format that indicates when the transfer took place. For write actions, the `occurred_at` timestamp cannot be older than 24 hours or in the future relative to the time of the request.
* @return $this
*/
public function setOccurredAt($occurred_at)
{
$this->occurred_at = $occurred_at;
return $this;
}
/**
* Gets created_at
* @return string
*/
public function getCreatedAt()
{
return $this->created_at;
}
/**
* Sets created_at
* @param string $created_at A read-only timestamp in RFC 3339 format that indicates when Square received the transfer request.
* @return $this
*/
public function setCreatedAt($created_at)
{
$this->created_at = $created_at;
return $this;
}
/**
* Gets source
* @return \SquareConnect\Model\SourceApplication
*/
public function getSource()
{
return $this->source;
}
/**
* Sets source
* @param \SquareConnect\Model\SourceApplication $source Read-only information about the application that initiated the inventory transfer.
* @return $this
*/
public function setSource($source)
{
$this->source = $source;
return $this;
}
/**
* Gets employee_id
* @return string
*/
public function getEmployeeId()
{
return $this->employee_id;
}
/**
* Sets employee_id
* @param string $employee_id The Square ID of the [Employee](#type-employee) responsible for the inventory transfer.
* @return $this
*/
public function setEmployeeId($employee_id)
{
$this->employee_id = $employee_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));
}
}
}