1 | <?php |
||
31 | class PaymentDataEntity extends MessageEntity |
||
32 | { |
||
33 | /** @var \DateTime|bool $birthdate */ |
||
34 | protected $birthdate; |
||
35 | |||
36 | /** @var bool $conditionsAccepted */ |
||
37 | protected $conditionsAccepted; |
||
38 | |||
39 | /** @var string $riskSessionId */ |
||
40 | protected $riskSessionId; |
||
41 | |||
42 | /** @var string $frontendFinishUrl */ |
||
43 | protected $frontendFinishUrl; |
||
44 | |||
45 | /** @var string frontendCancelUrl */ |
||
46 | protected $frontendCancelUrl; |
||
47 | |||
48 | /** |
||
49 | * Sets Birthdate |
||
50 | * |
||
51 | * @param string $birthdate |
||
52 | * |
||
53 | * @return $this |
||
54 | */ |
||
55 | public function setBirthdate($birthdate) |
||
61 | |||
62 | /** |
||
63 | * {@inheritdoc} |
||
64 | */ |
||
65 | public function toArray($object = null) |
||
69 | } |
||
70 |