D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Libs
/
OnlinePayments
/
Sdk
/
Domain
/
Filename :
AmountBreakdown.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 AmountBreakdown extends DataObject { /** * @var int|null */ public ?int $amount = null; /** * @var string|null */ public ?string $type = null; /** * @return int|null */ public function getAmount(): ?int { return $this->amount; } /** * @param int|null $value */ public function setAmount(?int $value): void { $this->amount = $value; } /** * @return string|null */ public function getType(): ?string { return $this->type; } /** * @param string|null $value */ public function setType(?string $value): void { $this->type = $value; } /** * @return object */ public function toObject(): object { $object = parent::toObject(); if (!is_null($this->amount)) { $object->amount = $this->amount; } if (!is_null($this->type)) { $object->type = $this->type; } return $object; } /** * @param object $object * @return $this * @throws UnexpectedValueException */ public function fromObject(object $object): AmountBreakdown { parent::fromObject($object); if (property_exists($object, 'amount')) { $this->amount = $object->amount; } if (property_exists($object, 'type')) { $this->type = $object->type; } return $this; } }