D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Libs
/
OnlinePayments
/
Sdk
/
Domain
/
Filename :
CreatePaymentResponse.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 CreatePaymentResponse extends DataObject { /** * @var PaymentCreationOutput|null */ public ?PaymentCreationOutput $creationOutput = null; /** * @var MerchantAction|null */ public ?MerchantAction $merchantAction = null; /** * @var PaymentResponse|null */ public ?PaymentResponse $payment = null; /** * @return PaymentCreationOutput|null */ public function getCreationOutput(): ?PaymentCreationOutput { return $this->creationOutput; } /** * @param PaymentCreationOutput|null $value */ public function setCreationOutput(?PaymentCreationOutput $value): void { $this->creationOutput = $value; } /** * @return MerchantAction|null */ public function getMerchantAction(): ?MerchantAction { return $this->merchantAction; } /** * @param MerchantAction|null $value */ public function setMerchantAction(?MerchantAction $value): void { $this->merchantAction = $value; } /** * @return PaymentResponse|null */ public function getPayment(): ?PaymentResponse { return $this->payment; } /** * @param PaymentResponse|null $value */ public function setPayment(?PaymentResponse $value): void { $this->payment = $value; } /** * @return object */ public function toObject(): object { $object = parent::toObject(); if (!is_null($this->creationOutput)) { $object->creationOutput = $this->creationOutput->toObject(); } if (!is_null($this->merchantAction)) { $object->merchantAction = $this->merchantAction->toObject(); } if (!is_null($this->payment)) { $object->payment = $this->payment->toObject(); } return $object; } /** * @param object $object * @return $this * @throws UnexpectedValueException */ public function fromObject(object $object): CreatePaymentResponse { parent::fromObject($object); if (property_exists($object, 'creationOutput')) { if (!is_object($object->creationOutput)) { throw new UnexpectedValueException('value \'' . print_r($object->creationOutput, true) . '\' is not an object'); } $value = new PaymentCreationOutput(); $this->creationOutput = $value->fromObject($object->creationOutput); } if (property_exists($object, 'merchantAction')) { if (!is_object($object->merchantAction)) { throw new UnexpectedValueException('value \'' . print_r($object->merchantAction, true) . '\' is not an object'); } $value = new MerchantAction(); $this->merchantAction = $value->fromObject($object->merchantAction); } if (property_exists($object, 'payment')) { if (!is_object($object->payment)) { throw new UnexpectedValueException('value \'' . print_r($object->payment, true) . '\' is not an object'); } $value = new PaymentResponse(); $this->payment = $value->fromObject($object->payment); } return $this; } }