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 GetHostedCheckoutResponse extends DataObject
15: {
16: /**
17: * @var CreatedPaymentOutput|null
18: */
19: public ?CreatedPaymentOutput $createdPaymentOutput = null;
20:
21: /**
22: * @var string|null
23: */
24: public ?string $status = null;
25:
26: /**
27: * @return object
28: */
29: public function toObject(): object
30: {
31: $object = parent::toObject();
32: if (!is_null($this->createdPaymentOutput)) {
33: $object->createdPaymentOutput = $this->createdPaymentOutput->toObject();
34: }
35: if (!is_null($this->status)) {
36: $object->status = $this->status;
37: }
38: return $object;
39: }
40:
41: /**
42: * @param object $object
43: *
44: * @return $this
45: * @throws UnexpectedValueException
46: */
47: public function fromObject(object $object): GetHostedCheckoutResponse
48: {
49: parent::fromObject($object);
50: if (property_exists($object, 'createdPaymentOutput')) {
51: if (!is_object($object->createdPaymentOutput)) {
52: throw new UnexpectedValueException('value \'' . print_r($object->createdPaymentOutput, true) . '\' is not an object');
53: }
54: $value = new CreatedPaymentOutput();
55: $this->createdPaymentOutput = $value->fromObject($object->createdPaymentOutput);
56: }
57: if (property_exists($object, 'status')) {
58: $this->status = $object->status;
59: }
60: return $this;
61: }
62: }
63: