1 | <?php |
||
15 | class AbstractQueryTransactionRequest extends AbstractSignatureRequest |
||
16 | { |
||
17 | /** |
||
18 | * {@inheritdoc} |
||
19 | */ |
||
20 | public function initialize(array $parameters = []) |
||
27 | |||
28 | /** |
||
29 | * Trả về mã đơn hàng cần truy vấn giao dịch. |
||
30 | * |
||
31 | * @return null|string |
||
32 | */ |
||
33 | public function getVpcMerchTxnRef(): ?string |
||
37 | |||
38 | /** |
||
39 | * Thiết lập mã đơn hàng cần truy vấn giao dịch tại hệ thống của bạn. |
||
40 | * |
||
41 | * @param null|string $ref |
||
42 | * @return $this |
||
43 | */ |
||
44 | public function setVpcMerchTxnRef(?string $ref) |
||
48 | |||
49 | /** |
||
50 | * {@inheritdoc} |
||
51 | */ |
||
52 | public function sendData($data): QueryTransactionResponse |
||
61 | |||
62 | /** |
||
63 | * {@inheritdoc} |
||
64 | */ |
||
65 | protected function getSignatureParameters(): array |
||
72 | } |
||
73 |