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