ok
Direktori : /home2/selectio/www/fms-worksuite/vendor/square/square/src/Models/ |
Current File : /home2/selectio/www/fms-worksuite/vendor/square/square/src/Models/CreateOrderRequest.php |
<?php declare(strict_types=1); namespace Square\Models; use stdClass; class CreateOrderRequest implements \JsonSerializable { /** * @var Order|null */ private $order; /** * @var string|null */ private $idempotencyKey; /** * Returns Order. * * Contains all information related to a single order to process with Square, * including line items that specify the products to purchase. `Order` objects also * include information about any associated tenders, refunds, and returns. * * All Connect V2 Transactions have all been converted to Orders including all associated * itemization data. */ public function getOrder(): ?Order { return $this->order; } /** * Sets Order. * * Contains all information related to a single order to process with Square, * including line items that specify the products to purchase. `Order` objects also * include information about any associated tenders, refunds, and returns. * * All Connect V2 Transactions have all been converted to Orders including all associated * itemization data. * * @maps order */ public function setOrder(?Order $order): void { $this->order = $order; } /** * Returns Idempotency Key. * * A value you specify that uniquely identifies this * order among orders you have created. * * If you are unsure whether a particular order was created successfully, * you can try it again with the same idempotency key without * worrying about creating duplicate orders. * * For more information, see [Idempotency](https://developer.squareup. * com/docs/basics/api101/idempotency). */ public function getIdempotencyKey(): ?string { return $this->idempotencyKey; } /** * Sets Idempotency Key. * * A value you specify that uniquely identifies this * order among orders you have created. * * If you are unsure whether a particular order was created successfully, * you can try it again with the same idempotency key without * worrying about creating duplicate orders. * * For more information, see [Idempotency](https://developer.squareup. * com/docs/basics/api101/idempotency). * * @maps idempotency_key */ public function setIdempotencyKey(?string $idempotencyKey): void { $this->idempotencyKey = $idempotencyKey; } /** * 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 = []; if (isset($this->order)) { $json['order'] = $this->order; } if (isset($this->idempotencyKey)) { $json['idempotency_key'] = $this->idempotencyKey; } $json = array_filter($json, function ($val) { return $val !== null; }); return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json; } }