Файловый менеджер - Редактировать - /home/avadvi5/public_html/wp-content/plugins/wpforms/vendor_prefixed/square/square/src/Models/CompletePaymentRequest.php
Ðазад
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; use stdClass; /** * Describes a request to complete (capture) a payment using * [CompletePayment]($e/Payments/CompletePayment). * * By default, payments are set to `autocomplete` immediately after they are created. * To complete payments manually, set `autocomplete` to `false`. */ class CompletePaymentRequest implements \JsonSerializable { /** * @var array */ private $versionToken = []; /** * Returns Version Token. * Used for optimistic concurrency. This opaque token identifies the current `Payment` * version that the caller expects. If the server has a different version of the Payment, * the update fails and a response with a VERSION_MISMATCH error is returned. */ public function getVersionToken() : ?string { if (\count($this->versionToken) == 0) { return null; } return $this->versionToken['value']; } /** * Sets Version Token. * Used for optimistic concurrency. This opaque token identifies the current `Payment` * version that the caller expects. If the server has a different version of the Payment, * the update fails and a response with a VERSION_MISMATCH error is returned. * * @maps version_token */ public function setVersionToken(?string $versionToken) : void { $this->versionToken['value'] = $versionToken; } /** * Unsets Version Token. * Used for optimistic concurrency. This opaque token identifies the current `Payment` * version that the caller expects. If the server has a different version of the Payment, * the update fails and a response with a VERSION_MISMATCH error is returned. */ public function unsetVersionToken() : void { $this->versionToken = []; } /** * 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 (!empty($this->versionToken)) { $json['version_token'] = $this->versionToken['value']; } $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
|
ÐаÑтройка