| 1: | <?php |
| 2: | |
| 3: | |
| 4: | |
| 5: | namespace Worldline\Acquiring\Sdk\V1\Domain; |
| 6: | |
| 7: | use UnexpectedValueException; |
| 8: | use Worldline\Acquiring\Sdk\Domain\DataObject; |
| 9: | |
| 10: | |
| 11: | |
| 12: | |
| 13: | class AddressVerificationData extends DataObject |
| 14: | { |
| 15: | |
| 16: | |
| 17: | |
| 18: | public $cardholderAddress = null; |
| 19: | |
| 20: | |
| 21: | |
| 22: | |
| 23: | public $cardholderPostalCode = null; |
| 24: | |
| 25: | |
| 26: | |
| 27: | |
| 28: | public function toObject() |
| 29: | { |
| 30: | $object = parent::toObject(); |
| 31: | if (!is_null($this->cardholderAddress)) { |
| 32: | $object->cardholderAddress = $this->cardholderAddress; |
| 33: | } |
| 34: | if (!is_null($this->cardholderPostalCode)) { |
| 35: | $object->cardholderPostalCode = $this->cardholderPostalCode; |
| 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, 'cardholderAddress')) { |
| 49: | $this->cardholderAddress = $object->cardholderAddress; |
| 50: | } |
| 51: | if (property_exists($object, 'cardholderPostalCode')) { |
| 52: | $this->cardholderPostalCode = $object->cardholderPostalCode; |
| 53: | } |
| 54: | return $this; |
| 55: | } |
| 56: | } |
| 57: | |