File: /home/xedaptot/ai.naniguide.com/vendor/square/square/src/Models/TerminalCheckoutQuery.php
<?php
declare(strict_types=1);
namespace Square\Models;
use stdClass;
class TerminalCheckoutQuery implements \JsonSerializable
{
/**
* @var TerminalCheckoutQueryFilter|null
*/
private $filter;
/**
* @var TerminalCheckoutQuerySort|null
*/
private $sort;
/**
* Returns Filter.
*/
public function getFilter(): ?TerminalCheckoutQueryFilter
{
return $this->filter;
}
/**
* Sets Filter.
*
* @maps filter
*/
public function setFilter(?TerminalCheckoutQueryFilter $filter): void
{
$this->filter = $filter;
}
/**
* Returns Sort.
*/
public function getSort(): ?TerminalCheckoutQuerySort
{
return $this->sort;
}
/**
* Sets Sort.
*
* @maps sort
*/
public function setSort(?TerminalCheckoutQuerySort $sort): void
{
$this->sort = $sort;
}
/**
* Encode this object to JSON
*
* @param bool $asArrayWhenEmpty Whether to serialize this model as an array whenever no fields
* are set. (default: false)
*
* @return array|stdClass
*/
#[\ReturnTypeWillChange] // @phan-suppress-current-line PhanUndeclaredClassAttribute for (php < 8.1)
public function jsonSerialize(bool $asArrayWhenEmpty = false)
{
$json = [];
if (isset($this->filter)) {
$json['filter'] = $this->filter;
}
if (isset($this->sort)) {
$json['sort'] = $this->sort;
}
$json = array_filter($json, function ($val) {
return $val !== null;
});
return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json;
}
}