1
0
Files
PayPal-PHP-Server-SDK/src/Models/AuthorizationStatusWithDetails.php
Patrick Powers 504c367386 Release 0.7.0
Beta Release 0.7.0 including:

- Bug fixes
- Updated model/function names
- Updated models to reflect changes in APIs
2025-03-20 13:18:55 -05:00

106 lines
2.5 KiB
PHP

<?php
declare(strict_types=1);
/*
* PaypalServerSdkLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
namespace PaypalServerSdkLib\Models;
use PaypalServerSdkLib\ApiHelper;
use stdClass;
/**
* The status fields and status details for an authorized payment.
*/
class AuthorizationStatusWithDetails implements \JsonSerializable
{
/**
* @var string|null
*/
private $status;
/**
* @var AuthorizationStatusDetails|null
*/
private $statusDetails;
/**
* Returns Status.
* The status for the authorized payment.
*/
public function getStatus(): ?string
{
return $this->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;
}
/**
* Converts the AuthorizationStatusWithDetails object to a human-readable string representation.
*
* @return string The string representation of the AuthorizationStatusWithDetails object.
*/
public function __toString(): string
{
return ApiHelper::stringify(
'AuthorizationStatusWithDetails',
['status' => $this->status, 'statusDetails' => $this->statusDetails]
);
}
/**
* 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'] = $this->status;
}
if (isset($this->statusDetails)) {
$json['status_details'] = $this->statusDetails;
}
return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json;
}
}