1 | <?php |
||
16 | class CompletePurchaseRequest extends AbstractRequest |
||
17 | { |
||
18 | /** |
||
19 | * Get the data for this request. |
||
20 | * @return array request data |
||
21 | */ |
||
22 | public function getData() |
||
28 | |||
29 | /** |
||
30 | * Send the request with specified data. |
||
31 | * @param mixed $data The data to send |
||
32 | * @return CompletePurchaseResponse |
||
33 | */ |
||
34 | public function sendData($data) |
||
38 | } |
||
39 |