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