D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Libs
/
OnlinePayments
/
Sdk
/
Domain
/
Filename :
PaymentResponse.php
back
Copy
<?php /* * This file was automatically generated. */ namespace App\Libs\OnlinePayments\Sdk\Domain; use App\Libs\Sdk\Domain\DataObject; use UnexpectedValueException; /** * @package OnlinePayments\Sdk\Domain */ class PaymentResponse extends DataObject { /** * @var HostedCheckoutSpecificOutput|null */ public ?HostedCheckoutSpecificOutput $hostedCheckoutSpecificOutput = null; /** * @var string|null */ public ?string $id = null; /** * @var PaymentOutput|null */ public ?PaymentOutput $paymentOutput = null; /** * @var string|null */ public ?string $status = null; /** * @var PaymentStatusOutput|null */ public ?PaymentStatusOutput $statusOutput = null; /** * @return HostedCheckoutSpecificOutput|null */ public function getHostedCheckoutSpecificOutput(): ?HostedCheckoutSpecificOutput { return $this->hostedCheckoutSpecificOutput; } /** * @param HostedCheckoutSpecificOutput|null $value */ public function setHostedCheckoutSpecificOutput(?HostedCheckoutSpecificOutput $value): void { $this->hostedCheckoutSpecificOutput = $value; } /** * @return string|null */ public function getId(): ?string { return $this->id; } /** * @param string|null $value */ public function setId(?string $value): void { $this->id = $value; } /** * @return PaymentOutput|null */ public function getPaymentOutput(): ?PaymentOutput { return $this->paymentOutput; } /** * @param PaymentOutput|null $value */ public function setPaymentOutput(?PaymentOutput $value): void { $this->paymentOutput = $value; } /** * @return string|null */ public function getStatus(): ?string { return $this->status; } /** * @param string|null $value */ public function setStatus(?string $value): void { $this->status = $value; } /** * @return PaymentStatusOutput|null */ public function getStatusOutput(): ?PaymentStatusOutput { return $this->statusOutput; } /** * @param PaymentStatusOutput|null $value */ public function setStatusOutput(?PaymentStatusOutput $value): void { $this->statusOutput = $value; } /** * @return object */ public function toObject(): object { $object = parent::toObject(); if (!is_null($this->hostedCheckoutSpecificOutput)) { $object->hostedCheckoutSpecificOutput = $this->hostedCheckoutSpecificOutput->toObject(); } if (!is_null($this->id)) { $object->id = $this->id; } if (!is_null($this->paymentOutput)) { $object->paymentOutput = $this->paymentOutput->toObject(); } if (!is_null($this->status)) { $object->status = $this->status; } if (!is_null($this->statusOutput)) { $object->statusOutput = $this->statusOutput->toObject(); } return $object; } /** * @param object $object * @return $this * @throws UnexpectedValueException */ public function fromObject(object $object): PaymentResponse { parent::fromObject($object); if (property_exists($object, 'hostedCheckoutSpecificOutput')) { if (!is_object($object->hostedCheckoutSpecificOutput)) { throw new UnexpectedValueException('value \'' . print_r($object->hostedCheckoutSpecificOutput, true) . '\' is not an object'); } $value = new HostedCheckoutSpecificOutput(); $this->hostedCheckoutSpecificOutput = $value->fromObject($object->hostedCheckoutSpecificOutput); } if (property_exists($object, 'id')) { $this->id = $object->id; } if (property_exists($object, 'paymentOutput')) { if (!is_object($object->paymentOutput)) { throw new UnexpectedValueException('value \'' . print_r($object->paymentOutput, true) . '\' is not an object'); } $value = new PaymentOutput(); $this->paymentOutput = $value->fromObject($object->paymentOutput); } if (property_exists($object, 'status')) { $this->status = $object->status; } if (property_exists($object, 'statusOutput')) { if (!is_object($object->statusOutput)) { throw new UnexpectedValueException('value \'' . print_r($object->statusOutput, true) . '\' is not an object'); } $value = new PaymentStatusOutput(); $this->statusOutput = $value->fromObject($object->statusOutput); } return $this; } }