'string',
'sort_order' => 'string'
);
/**
* Array of attributes where the key is the local name, and the value is the original name
* @var string[]
*/
static $attributeMap = array(
'sort_field' => 'sort_field',
'sort_order' => 'sort_order'
);
/**
* Array of attributes to setter functions (for deserialization of responses)
* @var string[]
*/
static $setters = array(
'sort_field' => 'setSortField',
'sort_order' => 'setSortOrder'
);
/**
* Array of attributes to getter functions (for serialization of requests)
* @var string[]
*/
static $getters = array(
'sort_field' => 'getSortField',
'sort_order' => 'getSortOrder'
);
/**
* $sort_field The field to sort by. __Important:__ When using a [DateTimeFilter](#type-searchordersfilter), `sort_field` must match the timestamp field that the DateTimeFilter uses to filter. For example, If you set your `sort_field` to `CLOSED_AT` and you use a DateTimeFilter, your DateTimeFilter must filter for orders by their `CLOSED_AT` date. If this field does not match the timestamp field in `DateTimeFilter`, SearchOrders will return an error. Default: `CREATED_AT`. See [SearchOrdersSortField](#type-searchorderssortfield) for possible values
* @var string
*/
protected $sort_field;
/**
* $sort_order The chronological order in which results are returned. Defaults to `DESC`. See [SortOrder](#type-sortorder) for possible values
* @var string
*/
protected $sort_order;
/**
* Constructor
* @param mixed[] $data Associated array of property value initializing the model
*/
public function __construct(array $data = null)
{
if ($data != null) {
if (isset($data["sort_field"])) {
$this->sort_field = $data["sort_field"];
} else {
$this->sort_field = null;
}
if (isset($data["sort_order"])) {
$this->sort_order = $data["sort_order"];
} else {
$this->sort_order = null;
}
}
}
/**
* Gets sort_field
* @return string
*/
public function getSortField()
{
return $this->sort_field;
}
/**
* Sets sort_field
* @param string $sort_field The field to sort by. __Important:__ When using a [DateTimeFilter](#type-searchordersfilter), `sort_field` must match the timestamp field that the DateTimeFilter uses to filter. For example, If you set your `sort_field` to `CLOSED_AT` and you use a DateTimeFilter, your DateTimeFilter must filter for orders by their `CLOSED_AT` date. If this field does not match the timestamp field in `DateTimeFilter`, SearchOrders will return an error. Default: `CREATED_AT`. See [SearchOrdersSortField](#type-searchorderssortfield) for possible values
* @return $this
*/
public function setSortField($sort_field)
{
$this->sort_field = $sort_field;
return $this;
}
/**
* Gets sort_order
* @return string
*/
public function getSortOrder()
{
return $this->sort_order;
}
/**
* Sets sort_order
* @param string $sort_order The chronological order in which results are returned. Defaults to `DESC`. See [SortOrder](#type-sortorder) for possible values
* @return $this
*/
public function setSortOrder($sort_order)
{
$this->sort_order = $sort_order;
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));
}
}
}