'string[]',
'location_ids' => 'string[]',
'updated_after' => 'string',
'cursor' => 'string'
);
/**
* Array of attributes where the key is the local name, and the value is the original name
* @var string[]
*/
static $attributeMap = array(
'catalog_object_ids' => 'catalog_object_ids',
'location_ids' => 'location_ids',
'updated_after' => 'updated_after',
'cursor' => 'cursor'
);
/**
* Array of attributes to setter functions (for deserialization of responses)
* @var string[]
*/
static $setters = array(
'catalog_object_ids' => 'setCatalogObjectIds',
'location_ids' => 'setLocationIds',
'updated_after' => 'setUpdatedAfter',
'cursor' => 'setCursor'
);
/**
* Array of attributes to getter functions (for serialization of requests)
* @var string[]
*/
static $getters = array(
'catalog_object_ids' => 'getCatalogObjectIds',
'location_ids' => 'getLocationIds',
'updated_after' => 'getUpdatedAfter',
'cursor' => 'getCursor'
);
/**
* $catalog_object_ids Filters results by [CatalogObject](#type-catalogobject) ID. Only applied when set. Default: unset.
* @var string[]
*/
protected $catalog_object_ids;
/**
* $location_ids Filters results by [Location](#type-location) ID. Only applied when set. Default: unset.
* @var string[]
*/
protected $location_ids;
/**
* $updated_after Provided as an RFC 3339 timestamp. Returns results whose `calculated_at` value is after the given time. Default: UNIX epoch (`1970-01-01T00:00:00Z`).
* @var string
*/
protected $updated_after;
/**
* $cursor A pagination cursor returned by a previous call to this endpoint. Provide this to retrieve the next set of results for the original query. See [Pagination](/basics/api101/pagination) for more information.
* @var string
*/
protected $cursor;
/**
* Constructor
* @param mixed[] $data Associated array of property value initializing the model
*/
public function __construct(array $data = null)
{
if ($data != null) {
if (isset($data["catalog_object_ids"])) {
$this->catalog_object_ids = $data["catalog_object_ids"];
} else {
$this->catalog_object_ids = null;
}
if (isset($data["location_ids"])) {
$this->location_ids = $data["location_ids"];
} else {
$this->location_ids = null;
}
if (isset($data["updated_after"])) {
$this->updated_after = $data["updated_after"];
} else {
$this->updated_after = null;
}
if (isset($data["cursor"])) {
$this->cursor = $data["cursor"];
} else {
$this->cursor = null;
}
}
}
/**
* Gets catalog_object_ids
* @return string[]
*/
public function getCatalogObjectIds()
{
return $this->catalog_object_ids;
}
/**
* Sets catalog_object_ids
* @param string[] $catalog_object_ids Filters results by [CatalogObject](#type-catalogobject) ID. Only applied when set. Default: unset.
* @return $this
*/
public function setCatalogObjectIds($catalog_object_ids)
{
$this->catalog_object_ids = $catalog_object_ids;
return $this;
}
/**
* Gets location_ids
* @return string[]
*/
public function getLocationIds()
{
return $this->location_ids;
}
/**
* Sets location_ids
* @param string[] $location_ids Filters results by [Location](#type-location) ID. Only applied when set. Default: unset.
* @return $this
*/
public function setLocationIds($location_ids)
{
$this->location_ids = $location_ids;
return $this;
}
/**
* Gets updated_after
* @return string
*/
public function getUpdatedAfter()
{
return $this->updated_after;
}
/**
* Sets updated_after
* @param string $updated_after Provided as an RFC 3339 timestamp. Returns results whose `calculated_at` value is after the given time. Default: UNIX epoch (`1970-01-01T00:00:00Z`).
* @return $this
*/
public function setUpdatedAfter($updated_after)
{
$this->updated_after = $updated_after;
return $this;
}
/**
* Gets cursor
* @return string
*/
public function getCursor()
{
return $this->cursor;
}
/**
* Sets cursor
* @param string $cursor A pagination cursor returned by a previous call to this endpoint. Provide this to retrieve the next set of results for the original query. See [Pagination](/basics/api101/pagination) for more information.
* @return $this
*/
public function setCursor($cursor)
{
$this->cursor = $cursor;
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));
}
}
}