D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Libs
/
OnlinePayments
/
Sdk
/
Domain
/
Filename :
OperationOutput.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 OperationOutput extends DataObject { /** * @var AmountOfMoney|null */ public ?AmountOfMoney $amountOfMoney = null; /** * @var string|null */ public ?string $id = null; /** * @var OperationPaymentReferences|null */ public ?OperationPaymentReferences $operationReferences = null; /** * @var string|null */ public ?string $paymentMethod = null; /** * @var PaymentReferences|null */ public ?PaymentReferences $references = null; /** * @var string|null */ public ?string $status = null; /** * @var PaymentStatusOutput|null */ public ?PaymentStatusOutput $statusOutput = null; /** * @return AmountOfMoney|null */ public function getAmountOfMoney(): ?AmountOfMoney { return $this->amountOfMoney; } /** * @param AmountOfMoney|null $value */ public function setAmountOfMoney(?AmountOfMoney $value): void { $this->amountOfMoney = $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 OperationPaymentReferences|null */ public function getOperationReferences(): ?OperationPaymentReferences { return $this->operationReferences; } /** * @param OperationPaymentReferences|null $value */ public function setOperationReferences(?OperationPaymentReferences $value): void { $this->operationReferences = $value; } /** * @return string|null */ public function getPaymentMethod(): ?string { return $this->paymentMethod; } /** * @param string|null $value */ public function setPaymentMethod(?string $value): void { $this->paymentMethod = $value; } /** * @return PaymentReferences|null */ public function getReferences(): ?PaymentReferences { return $this->references; } /** * @param PaymentReferences|null $value */ public function setReferences(?PaymentReferences $value): void { $this->references = $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->amountOfMoney)) { $object->amountOfMoney = $this->amountOfMoney->toObject(); } if (!is_null($this->id)) { $object->id = $this->id; } if (!is_null($this->operationReferences)) { $object->operationReferences = $this->operationReferences->toObject(); } if (!is_null($this->paymentMethod)) { $object->paymentMethod = $this->paymentMethod; } if (!is_null($this->references)) { $object->references = $this->references->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): OperationOutput { parent::fromObject($object); if (property_exists($object, 'amountOfMoney')) { if (!is_object($object->amountOfMoney)) { throw new UnexpectedValueException('value \'' . print_r($object->amountOfMoney, true) . '\' is not an object'); } $value = new AmountOfMoney(); $this->amountOfMoney = $value->fromObject($object->amountOfMoney); } if (property_exists($object, 'id')) { $this->id = $object->id; } if (property_exists($object, 'operationReferences')) { if (!is_object($object->operationReferences)) { throw new UnexpectedValueException('value \'' . print_r($object->operationReferences, true) . '\' is not an object'); } $value = new OperationPaymentReferences(); $this->operationReferences = $value->fromObject($object->operationReferences); } if (property_exists($object, 'paymentMethod')) { $this->paymentMethod = $object->paymentMethod; } if (property_exists($object, 'references')) { if (!is_object($object->references)) { throw new UnexpectedValueException('value \'' . print_r($object->references, true) . '\' is not an object'); } $value = new PaymentReferences(); $this->references = $value->fromObject($object->references); } 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; } }