D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Libs
/
OnlinePayments
/
Sdk
/
Domain
/
Filename :
PaymentContext.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 PaymentContext extends DataObject { /** * @var AmountOfMoney|null */ public ?AmountOfMoney $amountOfMoney = null; /** * @var string|null */ public ?string $countryCode = null; /** * @var bool|null */ public ?bool $isRecurring = 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 getCountryCode(): ?string { return $this->countryCode; } /** * @param string|null $value */ public function setCountryCode(?string $value): void { $this->countryCode = $value; } /** * @return bool|null */ public function getIsRecurring(): ?bool { return $this->isRecurring; } /** * @param bool|null $value */ public function setIsRecurring(?bool $value): void { $this->isRecurring = $value; } /** * @return object */ public function toObject(): object { $object = parent::toObject(); if (!is_null($this->amountOfMoney)) { $object->amountOfMoney = $this->amountOfMoney->toObject(); } if (!is_null($this->countryCode)) { $object->countryCode = $this->countryCode; } if (!is_null($this->isRecurring)) { $object->isRecurring = $this->isRecurring; } return $object; } /** * @param object $object * @return $this * @throws UnexpectedValueException */ public function fromObject(object $object): PaymentContext { 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, 'countryCode')) { $this->countryCode = $object->countryCode; } if (property_exists($object, 'isRecurring')) { $this->isRecurring = $object->isRecurring; } return $this; } }