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:
10: /**
11: * @package Worldline\Connect\Sdk\V1\Domain
12: */
13: class RedirectPaymentProduct840SpecificInput extends AbstractRedirectPaymentProduct840SpecificInput
14: {
15: /**
16: * @var string
17: * @deprecated Use Order.references.descriptor instead
18: */
19: public $custom = null;
20:
21: /**
22: * @var bool
23: */
24: public $isShortcut = null;
25:
26: /**
27: * @return object
28: */
29: public function toObject()
30: {
31: $object = parent::toObject();
32: if (!is_null($this->custom)) {
33: $object->custom = $this->custom;
34: }
35: if (!is_null($this->isShortcut)) {
36: $object->isShortcut = $this->isShortcut;
37: }
38: return $object;
39: }
40:
41: /**
42: * @param object $object
43: * @return $this
44: * @throws UnexpectedValueException
45: */
46: public function fromObject($object)
47: {
48: parent::fromObject($object);
49: if (property_exists($object, 'custom')) {
50: $this->custom = $object->custom;
51: }
52: if (property_exists($object, 'isShortcut')) {
53: $this->isShortcut = $object->isShortcut;
54: }
55: return $this;
56: }
57: }
58: