D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Libs
/
OnlinePayments
/
Sdk
/
Domain
/
Filename :
RefundRedirectMethodSpecificOutput.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 RefundRedirectMethodSpecificOutput extends DataObject { /** * @var int|null */ public ?int $totalAmountPaid = null; /** * @var int|null */ public ?int $totalAmountRefunded = null; /** * @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->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): RefundRedirectMethodSpecificOutput { parent::fromObject($object); if (property_exists($object, 'totalAmountPaid')) { $this->totalAmountPaid = $object->totalAmountPaid; } if (property_exists($object, 'totalAmountRefunded')) { $this->totalAmountRefunded = $object->totalAmountRefunded; } return $this; } }