status; } /** * Sets Status. * The status for the authorized payment. * * @maps status */ public function setStatus(?string $status): void { $this->status = $status; } /** * Returns Status Details. * The details of the authorized payment status. */ public function getStatusDetails(): ?AuthorizationStatusDetails { return $this->statusDetails; } /** * Sets Status Details. * The details of the authorized payment status. * * @maps status_details */ public function setStatusDetails(?AuthorizationStatusDetails $statusDetails): void { $this->statusDetails = $statusDetails; } /** * Returns Id. * The PayPal-generated ID for the authorized payment. */ public function getId(): ?string { return $this->id; } /** * Sets Id. * The PayPal-generated ID for the authorized payment. * * @maps id */ public function setId(?string $id): void { $this->id = $id; } /** * Returns Amount. * The currency and amount for a financial transaction, such as a balance or payment due. */ public function getAmount(): ?Money { return $this->amount; } /** * Sets Amount. * The currency and amount for a financial transaction, such as a balance or payment due. * * @maps amount */ public function setAmount(?Money $amount): void { $this->amount = $amount; } /** * Returns Invoice Id. * The API caller-provided external invoice number for this order. Appears in both the payer's * transaction history and the emails that the payer receives. */ public function getInvoiceId(): ?string { return $this->invoiceId; } /** * Sets Invoice Id. * The API caller-provided external invoice number for this order. Appears in both the payer's * transaction history and the emails that the payer receives. * * @maps invoice_id */ public function setInvoiceId(?string $invoiceId): void { $this->invoiceId = $invoiceId; } /** * Returns Custom Id. * The API caller-provided external ID. Used to reconcile API caller-initiated transactions with PayPal * transactions. Appears in transaction and settlement reports. */ public function getCustomId(): ?string { return $this->customId; } /** * Sets Custom Id. * The API caller-provided external ID. Used to reconcile API caller-initiated transactions with PayPal * transactions. Appears in transaction and settlement reports. * * @maps custom_id */ public function setCustomId(?string $customId): void { $this->customId = $customId; } /** * Returns Network Transaction Reference. * Reference values used by the card network to identify a transaction. */ public function getNetworkTransactionReference(): ?NetworkTransactionReference { return $this->networkTransactionReference; } /** * Sets Network Transaction Reference. * Reference values used by the card network to identify a transaction. * * @maps network_transaction_reference */ public function setNetworkTransactionReference(?NetworkTransactionReference $networkTransactionReference): void { $this->networkTransactionReference = $networkTransactionReference; } /** * Returns Seller Protection. * The level of protection offered as defined by [PayPal Seller Protection for Merchants](https://www. * paypal.com/us/webapps/mpp/security/seller-protection). */ public function getSellerProtection(): ?SellerProtection { return $this->sellerProtection; } /** * Sets Seller Protection. * The level of protection offered as defined by [PayPal Seller Protection for Merchants](https://www. * paypal.com/us/webapps/mpp/security/seller-protection). * * @maps seller_protection */ public function setSellerProtection(?SellerProtection $sellerProtection): void { $this->sellerProtection = $sellerProtection; } /** * Returns Expiration Time. * The date and time, in [Internet date and time format](https://tools.ietf.org/html/rfc3339#section-5. * 6). Seconds are required while fractional seconds are optional.
Note: * The regular expression provides guidance but does not reject all invalid dates.*/ public function getExpirationTime(): ?string { return $this->expirationTime; } /** * Sets Expiration Time. * The date and time, in [Internet date and time format](https://tools.ietf.org/html/rfc3339#section-5. * 6). Seconds are required while fractional seconds are optional.
Note: * The regular expression provides guidance but does not reject all invalid dates.* * @maps expiration_time */ public function setExpirationTime(?string $expirationTime): void { $this->expirationTime = $expirationTime; } /** * Returns Links. * An array of related [HATEOAS links](/docs/api/reference/api-responses/#hateoas-links). * * @return LinkDescription[]|null */ public function getLinks(): ?array { return $this->links; } /** * Sets Links. * An array of related [HATEOAS links](/docs/api/reference/api-responses/#hateoas-links). * * @maps links * * @param LinkDescription[]|null $links */ public function setLinks(?array $links): void { $this->links = $links; } /** * Returns Create Time. * The date and time, in [Internet date and time format](https://tools.ietf.org/html/rfc3339#section-5. * 6). Seconds are required while fractional seconds are optional.
Note: * The regular expression provides guidance but does not reject all invalid dates.*/ public function getCreateTime(): ?string { return $this->createTime; } /** * Sets Create Time. * The date and time, in [Internet date and time format](https://tools.ietf.org/html/rfc3339#section-5. * 6). Seconds are required while fractional seconds are optional.
Note: * The regular expression provides guidance but does not reject all invalid dates.* * @maps create_time */ public function setCreateTime(?string $createTime): void { $this->createTime = $createTime; } /** * Returns Update Time. * The date and time, in [Internet date and time format](https://tools.ietf.org/html/rfc3339#section-5. * 6). Seconds are required while fractional seconds are optional.
Note: * The regular expression provides guidance but does not reject all invalid dates.*/ public function getUpdateTime(): ?string { return $this->updateTime; } /** * Sets Update Time. * The date and time, in [Internet date and time format](https://tools.ietf.org/html/rfc3339#section-5. * 6). Seconds are required while fractional seconds are optional.
Note: * The regular expression provides guidance but does not reject all invalid dates.* * @maps update_time */ public function setUpdateTime(?string $updateTime): void { $this->updateTime = $updateTime; } /** * Returns Processor Response. * The processor response information for payment requests, such as direct credit card transactions. */ public function getProcessorResponse(): ?ProcessorResponse { return $this->processorResponse; } /** * Sets Processor Response. * The processor response information for payment requests, such as direct credit card transactions. * * @maps processor_response */ public function setProcessorResponse(?ProcessorResponse $processorResponse): void { $this->processorResponse = $processorResponse; } /** * 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->status)) { $json['status'] = AuthorizationStatus::checkValue($this->status); } if (isset($this->statusDetails)) { $json['status_details'] = $this->statusDetails; } if (isset($this->id)) { $json['id'] = $this->id; } if (isset($this->amount)) { $json['amount'] = $this->amount; } if (isset($this->invoiceId)) { $json['invoice_id'] = $this->invoiceId; } if (isset($this->customId)) { $json['custom_id'] = $this->customId; } if (isset($this->networkTransactionReference)) { $json['network_transaction_reference'] = $this->networkTransactionReference; } if (isset($this->sellerProtection)) { $json['seller_protection'] = $this->sellerProtection; } if (isset($this->expirationTime)) { $json['expiration_time'] = $this->expirationTime; } if (isset($this->links)) { $json['links'] = $this->links; } if (isset($this->createTime)) { $json['create_time'] = $this->createTime; } if (isset($this->updateTime)) { $json['update_time'] = $this->updateTime; } if (isset($this->processorResponse)) { $json['processor_response'] = $this->processorResponse; } return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json; } }