whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
vendor
/
square
/
square
/
src
/
Models
/
Upload File:
files >> /home/qbizpnmr/arif.umairtax.com/vendor/square/square/src/Models/V1CreateRefundRequest.php
<?php declare(strict_types=1); namespace Square\Models; use stdClass; /** * V1CreateRefundRequest */ class V1CreateRefundRequest implements \JsonSerializable { /** * @var string */ private $paymentId; /** * @var string */ private $type; /** * @var string */ private $reason; /** * @var V1Money|null */ private $refundedMoney; /** * @var array */ private $requestIdempotenceKey = []; /** * @param string $paymentId * @param string $type * @param string $reason */ public function __construct(string $paymentId, string $type, string $reason) { $this->paymentId = $paymentId; $this->type = $type; $this->reason = $reason; } /** * Returns Payment Id. * The ID of the payment to refund. If you are creating a `PARTIAL` * refund for a split tender payment, instead provide the id of the * particular tender you want to refund. */ public function getPaymentId(): string { return $this->paymentId; } /** * Sets Payment Id. * The ID of the payment to refund. If you are creating a `PARTIAL` * refund for a split tender payment, instead provide the id of the * particular tender you want to refund. * * @required * @maps payment_id */ public function setPaymentId(string $paymentId): void { $this->paymentId = $paymentId; } /** * Returns Type. */ public function getType(): string { return $this->type; } /** * Sets Type. * * @required * @maps type */ public function setType(string $type): void { $this->type = $type; } /** * Returns Reason. * The reason for the refund. */ public function getReason(): string { return $this->reason; } /** * Sets Reason. * The reason for the refund. * * @required * @maps reason */ public function setReason(string $reason): void { $this->reason = $reason; } /** * Returns Refunded Money. */ public function getRefundedMoney(): ?V1Money { return $this->refundedMoney; } /** * Sets Refunded Money. * * @maps refunded_money */ public function setRefundedMoney(?V1Money $refundedMoney): void { $this->refundedMoney = $refundedMoney; } /** * Returns Request Idempotence Key. * An optional key to ensure idempotence if you issue the same PARTIAL refund request more than once. */ public function getRequestIdempotenceKey(): ?string { if (count($this->requestIdempotenceKey) == 0) { return null; } return $this->requestIdempotenceKey['value']; } /** * Sets Request Idempotence Key. * An optional key to ensure idempotence if you issue the same PARTIAL refund request more than once. * * @maps request_idempotence_key */ public function setRequestIdempotenceKey(?string $requestIdempotenceKey): void { $this->requestIdempotenceKey['value'] = $requestIdempotenceKey; } /** * Unsets Request Idempotence Key. * An optional key to ensure idempotence if you issue the same PARTIAL refund request more than once. */ public function unsetRequestIdempotenceKey(): void { $this->requestIdempotenceKey = []; } /** * 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 = []; $json['payment_id'] = $this->paymentId; $json['type'] = $this->type; $json['reason'] = $this->reason; if (isset($this->refundedMoney)) { $json['refunded_money'] = $this->refundedMoney; } if (!empty($this->requestIdempotenceKey)) { $json['request_idempotence_key'] = $this->requestIdempotenceKey['value']; } $json = array_filter($json, function ($val) { return $val !== null; }); return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json; } }
Copyright ©2021 || Defacer Indonesia