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