1 | <?php |
||
10 | class PurchaseRequest extends AuthorizeRequest |
||
11 | { |
||
12 | /** |
||
13 | * Get phone. |
||
14 | * |
||
15 | * @return string |
||
16 | */ |
||
17 | 30 | public function getPhone() |
|
21 | |||
22 | /** |
||
23 | * Set phone. |
||
24 | * |
||
25 | * @param string $value |
||
26 | * |
||
27 | * @return static|\Omnipay\Common\Message\AbstractRequest |
||
28 | */ |
||
29 | 9 | public function setPhone($value) |
|
33 | |||
34 | /** |
||
35 | * Get custom field 2. |
||
36 | * |
||
37 | * @return string |
||
38 | */ |
||
39 | 18 | public function getCf2() |
|
43 | |||
44 | /** |
||
45 | * Set custom field 2. |
||
46 | * |
||
47 | * @param string $value |
||
48 | * |
||
49 | * @return static|\Omnipay\Common\Message\AbstractRequest |
||
50 | */ |
||
51 | 9 | public function setCf2($value) |
|
55 | |||
56 | /** |
||
57 | * Get custom field 3. |
||
58 | * |
||
59 | * @return string |
||
60 | */ |
||
61 | 18 | public function getCf3() |
|
65 | |||
66 | /** |
||
67 | * Set custom field 3. |
||
68 | * |
||
69 | * @param string $value |
||
70 | * |
||
71 | * @return static|\Omnipay\Common\Message\AbstractRequest |
||
72 | */ |
||
73 | 9 | public function setCf3($value) |
|
77 | |||
78 | /** |
||
79 | * Get callback URL. |
||
80 | * |
||
81 | * @return string |
||
82 | */ |
||
83 | 18 | public function getCallbackUrl() |
|
87 | |||
88 | /** |
||
89 | * Set callback URL. |
||
90 | * |
||
91 | * @param string $value |
||
92 | * |
||
93 | * @return static|\Omnipay\Common\Message\AbstractRequest |
||
94 | */ |
||
95 | 9 | public function setCallbackUrl($value) |
|
99 | |||
100 | /** |
||
101 | * Get apple reference. |
||
102 | * |
||
103 | * @return string |
||
104 | */ |
||
105 | 18 | public function getAppleReference() |
|
109 | |||
110 | /** |
||
111 | * Set apple reference. |
||
112 | * |
||
113 | * @param string $value |
||
114 | * |
||
115 | * @return static|\Omnipay\Common\Message\AbstractRequest |
||
116 | */ |
||
117 | 3 | public function setAppleReference($value) |
|
121 | |||
122 | /** |
||
123 | * Get the raw data array for this message. The format of this varies from gateway to |
||
124 | * gateway, but will usually be either an associative array, or a SimpleXMLElement. |
||
125 | * |
||
126 | * @return array |
||
127 | */ |
||
128 | 18 | public function getData() |
|
204 | |||
205 | /** |
||
206 | * Get a request token. |
||
207 | * |
||
208 | * @return string |
||
209 | */ |
||
210 | 30 | public function getRequestToken() |
|
214 | } |
||
215 |