'\SquareConnect\Model\CustomerFilter',
'sort' => '\SquareConnect\Model\CustomerSort'
);
/**
* Array of attributes where the key is the local name, and the value is the original name
* @var string[]
*/
static $attributeMap = array(
'filter' => 'filter',
'sort' => 'sort'
);
/**
* Array of attributes to setter functions (for deserialization of responses)
* @var string[]
*/
static $setters = array(
'filter' => 'setFilter',
'sort' => 'setSort'
);
/**
* Array of attributes to getter functions (for serialization of requests)
* @var string[]
*/
static $getters = array(
'filter' => 'getFilter',
'sort' => 'getSort'
);
/**
* $filter A list of filter criteria.
* @var \SquareConnect\Model\CustomerFilter
*/
protected $filter;
/**
* $sort Sort criteria for query results. The default sort behavior is to order customers alphabetically by `given_name` and `last_name`.
* @var \SquareConnect\Model\CustomerSort
*/
protected $sort;
/**
* Constructor
* @param mixed[] $data Associated array of property value initializing the model
*/
public function __construct(array $data = null)
{
if ($data != null) {
if (isset($data["filter"])) {
$this->filter = $data["filter"];
} else {
$this->filter = null;
}
if (isset($data["sort"])) {
$this->sort = $data["sort"];
} else {
$this->sort = null;
}
}
}
/**
* Gets filter
* @return \SquareConnect\Model\CustomerFilter
*/
public function getFilter()
{
return $this->filter;
}
/**
* Sets filter
* @param \SquareConnect\Model\CustomerFilter $filter A list of filter criteria.
* @return $this
*/
public function setFilter($filter)
{
$this->filter = $filter;
return $this;
}
/**
* Gets sort
* @return \SquareConnect\Model\CustomerSort
*/
public function getSort()
{
return $this->sort;
}
/**
* Sets sort
* @param \SquareConnect\Model\CustomerSort $sort Sort criteria for query results. The default sort behavior is to order customers alphabetically by `given_name` and `last_name`.
* @return $this
*/
public function setSort($sort)
{
$this->sort = $sort;
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));
}
}
}