ok
Direktori : /home2/selectio/www/fms-worksuite/vendor/square/square/src/Models/ |
Current File : /home2/selectio/www/fms-worksuite/vendor/square/square/src/Models/ListInvoicesRequest.php |
<?php declare(strict_types=1); namespace Square\Models; use stdClass; /** * Describes a `ListInvoice` request. */ class ListInvoicesRequest implements \JsonSerializable { /** * @var string */ private $locationId; /** * @var string|null */ private $cursor; /** * @var int|null */ private $limit; /** * @param string $locationId */ public function __construct(string $locationId) { $this->locationId = $locationId; } /** * Returns Location Id. * * The ID of the location for which to list invoices. */ public function getLocationId(): string { return $this->locationId; } /** * Sets Location Id. * * The ID of the location for which to list invoices. * * @required * @maps location_id */ public function setLocationId(string $locationId): void { $this->locationId = $locationId; } /** * Returns Cursor. * * A pagination cursor returned by a previous call to this endpoint. * Provide this cursor to retrieve the next set of results for your original query. * * For more information, see [Pagination](https://developer.squareup.com/docs/working-with- * apis/pagination). */ public function getCursor(): ?string { return $this->cursor; } /** * Sets Cursor. * * A pagination cursor returned by a previous call to this endpoint. * Provide this cursor to retrieve the next set of results for your original query. * * For more information, see [Pagination](https://developer.squareup.com/docs/working-with- * apis/pagination). * * @maps cursor */ public function setCursor(?string $cursor): void { $this->cursor = $cursor; } /** * Returns Limit. * * The maximum number of invoices to return (200 is the maximum `limit`). * If not provided, the server uses a default limit of 100 invoices. */ public function getLimit(): ?int { return $this->limit; } /** * Sets Limit. * * The maximum number of invoices to return (200 is the maximum `limit`). * If not provided, the server uses a default limit of 100 invoices. * * @maps limit */ public function setLimit(?int $limit): void { $this->limit = $limit; } /** * Encode this object to JSON * * @param bool $asArrayWhenEmpty Whether to serialize this model as an array whenever no fields * are set. (default: false) * * @return mixed */ public function jsonSerialize(bool $asArrayWhenEmpty = false) { $json = []; $json['location_id'] = $this->locationId; if (isset($this->cursor)) { $json['cursor'] = $this->cursor; } if (isset($this->limit)) { $json['limit'] = $this->limit; } $json = array_filter($json, function ($val) { return $val !== null; }); return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json; } }