1 | <?php |
||
7 | class CompleteAuthorizeResponse extends AbstractResponse implements RedirectResponseInterface |
||
8 | { |
||
9 | /** |
||
10 | * Is the response successful? |
||
11 | * |
||
12 | * @return boolean |
||
13 | */ |
||
14 | public function isSuccessful() |
||
19 | |||
20 | |||
21 | /** |
||
22 | * Is the payment pending? |
||
23 | * |
||
24 | * @return boolean |
||
25 | */ |
||
26 | public function isPending() |
||
31 | |||
32 | |||
33 | /** |
||
34 | * Gateway Reference |
||
35 | * |
||
36 | * @return null|string A reference provided by the gateway to represent this transaction |
||
37 | */ |
||
38 | public function getTransactionReference() |
||
42 | } |
||
43 |