Файловый менеджер - Редактировать - /home/avadvi5/public_html/wp-content/plugins/wpforms/vendor_prefixed/square/square/src/Models/SearchTerminalRefundsRequest.php
Ðазад
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; use stdClass; class SearchTerminalRefundsRequest implements \JsonSerializable { /** * @var TerminalRefundQuery|null */ private $query; /** * @var string|null */ private $cursor; /** * @var int|null */ private $limit; /** * Returns Query. */ public function getQuery() : ?TerminalRefundQuery { return $this->query; } /** * Sets Query. * * @maps query */ public function setQuery(?TerminalRefundQuery $query) : void { $this->query = $query; } /** * Returns Cursor. * A pagination cursor returned by a previous call to this endpoint. * Provide this cursor to retrieve the next set of results for the original query. */ 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 the original query. * * @maps cursor */ public function setCursor(?string $cursor) : void { $this->cursor = $cursor; } /** * Returns Limit. * Limits the number of results returned for a single request. */ public function getLimit() : ?int { return $this->limit; } /** * Sets Limit. * Limits the number of results returned for a single request. * * @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 array|stdClass */ #[\ReturnTypeWillChange] // @phan-suppress-current-line PhanUndeclaredClassAttribute for (php < 8.1) public function jsonSerialize(bool $asArrayWhenEmpty = \false) { $json = []; if (isset($this->query)) { $json['query'] = $this->query; } 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; } }
| ver. 1.1 | |
.
| PHP 8.3.30 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка