D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Libs
/
OnlinePayments
/
Sdk
/
Domain
/
Filename :
CustomerPaymentActivity.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 CustomerPaymentActivity extends DataObject { /** * @var int|null */ public ?int $numberOfPaymentAttemptsLast24Hours = null; /** * @var int|null */ public ?int $numberOfPaymentAttemptsLastYear = null; /** * @var int|null */ public ?int $numberOfPurchasesLast6Months = null; /** * @return int|null */ public function getNumberOfPaymentAttemptsLast24Hours(): ?int { return $this->numberOfPaymentAttemptsLast24Hours; } /** * @param int|null $value */ public function setNumberOfPaymentAttemptsLast24Hours(?int $value): void { $this->numberOfPaymentAttemptsLast24Hours = $value; } /** * @return int|null */ public function getNumberOfPaymentAttemptsLastYear(): ?int { return $this->numberOfPaymentAttemptsLastYear; } /** * @param int|null $value */ public function setNumberOfPaymentAttemptsLastYear(?int $value): void { $this->numberOfPaymentAttemptsLastYear = $value; } /** * @return int|null */ public function getNumberOfPurchasesLast6Months(): ?int { return $this->numberOfPurchasesLast6Months; } /** * @param int|null $value */ public function setNumberOfPurchasesLast6Months(?int $value): void { $this->numberOfPurchasesLast6Months = $value; } /** * @return object */ public function toObject(): object { $object = parent::toObject(); if (!is_null($this->numberOfPaymentAttemptsLast24Hours)) { $object->numberOfPaymentAttemptsLast24Hours = $this->numberOfPaymentAttemptsLast24Hours; } if (!is_null($this->numberOfPaymentAttemptsLastYear)) { $object->numberOfPaymentAttemptsLastYear = $this->numberOfPaymentAttemptsLastYear; } if (!is_null($this->numberOfPurchasesLast6Months)) { $object->numberOfPurchasesLast6Months = $this->numberOfPurchasesLast6Months; } return $object; } /** * @param object $object * @return $this * @throws UnexpectedValueException */ public function fromObject(object $object): CustomerPaymentActivity { parent::fromObject($object); if (property_exists($object, 'numberOfPaymentAttemptsLast24Hours')) { $this->numberOfPaymentAttemptsLast24Hours = $object->numberOfPaymentAttemptsLast24Hours; } if (property_exists($object, 'numberOfPaymentAttemptsLastYear')) { $this->numberOfPaymentAttemptsLastYear = $object->numberOfPaymentAttemptsLastYear; } if (property_exists($object, 'numberOfPurchasesLast6Months')) { $this->numberOfPurchasesLast6Months = $object->numberOfPurchasesLast6Months; } return $this; } }