D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Libs
/
OnlinePayments
/
Sdk
/
Domain
/
Filename :
RefundCardMethodSpecificOutput.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 RefundCardMethodSpecificOutput extends DataObject { /** * @var CurrencyConversion|null */ public ?CurrencyConversion $currencyConversion = null; /** * @var int|null */ public ?int $totalAmountPaid = null; /** * @var int|null */ public ?int $totalAmountRefunded = null; /** * @return CurrencyConversion|null */ public function getCurrencyConversion(): ?CurrencyConversion { return $this->currencyConversion; } /** * @param CurrencyConversion|null $value */ public function setCurrencyConversion(?CurrencyConversion $value): void { $this->currencyConversion = $value; } /** * @return int|null */ public function getTotalAmountPaid(): ?int { return $this->totalAmountPaid; } /** * @param int|null $value */ public function setTotalAmountPaid(?int $value): void { $this->totalAmountPaid = $value; } /** * @return int|null */ public function getTotalAmountRefunded(): ?int { return $this->totalAmountRefunded; } /** * @param int|null $value */ public function setTotalAmountRefunded(?int $value): void { $this->totalAmountRefunded = $value; } /** * @return object */ public function toObject(): object { $object = parent::toObject(); if (!is_null($this->currencyConversion)) { $object->currencyConversion = $this->currencyConversion->toObject(); } if (!is_null($this->totalAmountPaid)) { $object->totalAmountPaid = $this->totalAmountPaid; } if (!is_null($this->totalAmountRefunded)) { $object->totalAmountRefunded = $this->totalAmountRefunded; } return $object; } /** * @param object $object * @return $this * @throws UnexpectedValueException */ public function fromObject(object $object): RefundCardMethodSpecificOutput { parent::fromObject($object); if (property_exists($object, 'currencyConversion')) { if (!is_object($object->currencyConversion)) { throw new UnexpectedValueException('value \'' . print_r($object->currencyConversion, true) . '\' is not an object'); } $value = new CurrencyConversion(); $this->currencyConversion = $value->fromObject($object->currencyConversion); } if (property_exists($object, 'totalAmountPaid')) { $this->totalAmountPaid = $object->totalAmountPaid; } if (property_exists($object, 'totalAmountRefunded')) { $this->totalAmountRefunded = $object->totalAmountRefunded; } return $this; } }