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