D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Libs
/
OnlinePayments
/
Sdk
/
Domain
/
Filename :
PaymentProduct302SpecificData.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 PaymentProduct302SpecificData extends DataObject { /** * @var string[]|null */ public ?array $networks = null; /** * @return string[]|null */ public function getNetworks(): ?array { return $this->networks; } /** * @param string[]|null $value */ public function setNetworks(?array $value): void { $this->networks = $value; } /** * @return object */ public function toObject(): object { $object = parent::toObject(); if (!is_null($this->networks)) { $object->networks = []; foreach ($this->networks as $element) { if (!is_null($element)) { $object->networks[] = $element; } } } return $object; } /** * @param object $object * @return $this * @throws UnexpectedValueException */ public function fromObject(object $object): PaymentProduct302SpecificData { parent::fromObject($object); if (property_exists($object, 'networks')) { if (!is_array($object->networks) && !is_object($object->networks)) { throw new UnexpectedValueException('value \'' . print_r($object->networks, true) . '\' is not an array or object'); } $this->networks = []; foreach ($object->networks as $element) { $this->networks[] = $element; } } return $this; } }