1: <?php
2: /*
3: * This class was auto-generated from the API references found at
4: * https://apireference.connect.worldline-solutions.com/
5: */
6: namespace Worldline\Connect\Sdk\V1\Domain;
7:
8: use UnexpectedValueException;
9: use Worldline\Connect\Sdk\Domain\DataObject;
10:
11: /**
12: * @package Worldline\Connect\Sdk\V1\Domain
13: */
14: class HostedFile extends DataObject
15: {
16: /**
17: * @var string|null
18: */
19: public ?string $fileName = null;
20:
21: /**
22: * @var string|null
23: */
24: public ?string $fileSize = null;
25:
26: /**
27: * @var string|null
28: */
29: public ?string $fileType = null;
30:
31: /**
32: * @var string|null
33: */
34: public ?string $id = null;
35:
36: /**
37: * @return object
38: */
39: public function toObject(): object
40: {
41: $object = parent::toObject();
42: if (!is_null($this->fileName)) {
43: $object->fileName = $this->fileName;
44: }
45: if (!is_null($this->fileSize)) {
46: $object->fileSize = $this->fileSize;
47: }
48: if (!is_null($this->fileType)) {
49: $object->fileType = $this->fileType;
50: }
51: if (!is_null($this->id)) {
52: $object->id = $this->id;
53: }
54: return $object;
55: }
56:
57: /**
58: * @param object $object
59: *
60: * @return $this
61: * @throws UnexpectedValueException
62: */
63: public function fromObject(object $object): HostedFile
64: {
65: parent::fromObject($object);
66: if (property_exists($object, 'fileName')) {
67: $this->fileName = $object->fileName;
68: }
69: if (property_exists($object, 'fileSize')) {
70: $this->fileSize = $object->fileSize;
71: }
72: if (property_exists($object, 'fileType')) {
73: $this->fileType = $object->fileType;
74: }
75: if (property_exists($object, 'id')) {
76: $this->id = $object->id;
77: }
78: return $this;
79: }
80: }
81: