D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Libs
/
Sdk
/
Domain
/
Filename :
ShoppingCartExtension.php
back
Copy
<?php namespace App\Libs\Sdk\Domain; use UnexpectedValueException; /** * Class ShoppingCartExtension * * @package OnlinePayments\Sdk\Domain */ class ShoppingCartExtension extends DataObject { /** * @var string|null */ public ?string $creator = null; /** * @var string|null */ public ?string $name = null; /** * @var string|null */ public ?string $version = null; /** * @var string|null */ public ?string $extensionId = null; /** * @param string $creator * @param string $name * @param string $version * @param string|null $extensionId */ public function __construct(string $creator, string $name, string $version, ?string $extensionId = null) { $this->creator = $creator; $this->name = $name; $this->version = $version; $this->extensionId = $extensionId; } /** * @return object */ public function toObject(): object { $object = parent::toObject(); if (!is_null($this->creator)) { $object->creator = $this->creator; } if (!is_null($this->name)) { $object->name = $this->name; } if (!is_null($this->version)) { $object->version = $this->version; } if (!is_null($this->extensionId)) { $object->extensionId = $this->extensionId; } return $object; } /** * @param object $object * @return $this * @throws UnexpectedValueException */ public function fromObject(object $object): ShoppingCartExtension { parent::fromObject($object); if (property_exists($object, 'creator')) { $this->creator = $object->creator; } if (property_exists($object, 'name')) { $this->name = $object->name; } if (property_exists($object, 'version')) { $this->version = $object->version; } if (property_exists($object, 'extensionId')) { $this->extensionId = $object->extensionId; } return $this; } }