| 1: | <?php |
| 2: | |
| 3: | |
| 4: | |
| 5: | |
| 6: | namespace Worldline\Connect\Sdk\V1\Domain; |
| 7: | |
| 8: | use UnexpectedValueException; |
| 9: | |
| 10: | |
| 11: | |
| 12: | |
| 13: | class CustomerToken extends CustomerBase |
| 14: | { |
| 15: | |
| 16: | |
| 17: | |
| 18: | public $billingAddress = null; |
| 19: | |
| 20: | |
| 21: | |
| 22: | |
| 23: | public $personalInformation = null; |
| 24: | |
| 25: | |
| 26: | |
| 27: | |
| 28: | public function toObject() |
| 29: | { |
| 30: | $object = parent::toObject(); |
| 31: | if (!is_null($this->billingAddress)) { |
| 32: | $object->billingAddress = $this->billingAddress->toObject(); |
| 33: | } |
| 34: | if (!is_null($this->personalInformation)) { |
| 35: | $object->personalInformation = $this->personalInformation->toObject(); |
| 36: | } |
| 37: | return $object; |
| 38: | } |
| 39: | |
| 40: | |
| 41: | |
| 42: | |
| 43: | |
| 44: | |
| 45: | public function fromObject($object) |
| 46: | { |
| 47: | parent::fromObject($object); |
| 48: | if (property_exists($object, 'billingAddress')) { |
| 49: | if (!is_object($object->billingAddress)) { |
| 50: | throw new UnexpectedValueException('value \'' . print_r($object->billingAddress, true) . '\' is not an object'); |
| 51: | } |
| 52: | $value = new Address(); |
| 53: | $this->billingAddress = $value->fromObject($object->billingAddress); |
| 54: | } |
| 55: | if (property_exists($object, 'personalInformation')) { |
| 56: | if (!is_object($object->personalInformation)) { |
| 57: | throw new UnexpectedValueException('value \'' . print_r($object->personalInformation, true) . '\' is not an object'); |
| 58: | } |
| 59: | $value = new PersonalInformationToken(); |
| 60: | $this->personalInformation = $value->fromObject($object->personalInformation); |
| 61: | } |
| 62: | return $this; |
| 63: | } |
| 64: | } |
| 65: | |