| 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: | use Worldline\Connect\Sdk\Domain\DataObject; |
| 10: | |
| 11: | /** |
| 12: | * @package Worldline\Connect\Sdk\V1\Domain |
| 13: | */ |
| 14: | class TokenizePaymentRequest extends DataObject |
| 15: | { |
| 16: | /** |
| 17: | * @var string |
| 18: | */ |
| 19: | public $alias = null; |
| 20: | |
| 21: | /** |
| 22: | * @return object |
| 23: | */ |
| 24: | public function toObject() |
| 25: | { |
| 26: | $object = parent::toObject(); |
| 27: | if (!is_null($this->alias)) { |
| 28: | $object->alias = $this->alias; |
| 29: | } |
| 30: | return $object; |
| 31: | } |
| 32: | |
| 33: | /** |
| 34: | * @param object $object |
| 35: | * @return $this |
| 36: | * @throws UnexpectedValueException |
| 37: | */ |
| 38: | public function fromObject($object) |
| 39: | { |
| 40: | parent::fromObject($object); |
| 41: | if (property_exists($object, 'alias')) { |
| 42: | $this->alias = $object->alias; |
| 43: | } |
| 44: | return $this; |
| 45: | } |
| 46: | } |
| 47: |