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