1 | <?php |
||
13 | class ThreeDS2Data //extends ResultObject |
||
14 | { |
||
15 | /** @type string */ |
||
16 | private $notificationUrl; |
||
17 | |||
18 | /** @type object */ |
||
19 | private $browserInfo; |
||
20 | |||
21 | /** @type object */ |
||
22 | private $billingAddress; |
||
23 | |||
24 | /** @type object */ |
||
25 | private $deliveryAddress; |
||
26 | |||
27 | /** @type object */ |
||
28 | private $cardHolderInfo; |
||
29 | |||
30 | |||
31 | /** |
||
32 | * @return STRING of notification URL. |
||
33 | */ |
||
34 | public function getNotificationUrl() |
||
38 | |||
39 | |||
40 | /** |
||
41 | * @param STRING of notification URL |
||
42 | * @return VOID |
||
43 | */ |
||
44 | public function setNotificationUrl(string $url) : void |
||
48 | |||
49 | |||
50 | /** |
||
51 | * @return BrowserInfoInterface object of browser info. |
||
52 | */ |
||
53 | public function getBrowserInfo() |
||
57 | |||
58 | |||
59 | /** |
||
60 | * @param BrowserInfo object of browser info. |
||
61 | * @return VOID |
||
62 | */ |
||
63 | public function setBrowserInfo(BrowserInfo $browserInfo) : void |
||
67 | |||
68 | |||
69 | /** |
||
70 | * @return Address object of billing address. |
||
71 | */ |
||
72 | public function getBillingAddress() |
||
76 | |||
77 | |||
78 | /** |
||
79 | * @param Address object of billing address interface. |
||
80 | * @return VOID |
||
81 | */ |
||
82 | public function setBillingAddress(Address $billingAddress) : void |
||
86 | |||
87 | |||
88 | /** |
||
89 | * @return DeliveryAddress object of delivery address interface. |
||
90 | */ |
||
91 | public function getDeliveryAddress() |
||
95 | |||
96 | |||
97 | /** |
||
98 | * @param Address object of delivery address interface. |
||
99 | * @return VOID |
||
100 | */ |
||
101 | public function setDeliveryAddress(Address $deliveryAddress) : void |
||
105 | |||
106 | |||
107 | /** |
||
108 | * @return CardHolderInfo object of card holder info interface. |
||
109 | */ |
||
110 | public function getCardHolderInfo() |
||
114 | |||
115 | |||
116 | /** |
||
117 | * @param CardHolderInfo object of card holder info interface. |
||
118 | * @return VOID |
||
119 | */ |
||
120 | public function setCardHolderInfo(CardHolderInfo $cardHolderInfo) : void |
||
124 | } |