diff options
Diffstat (limited to 'inquiry_status_response.go')
| -rw-r--r-- | inquiry_status_response.go | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/inquiry_status_response.go b/inquiry_status_response.go new file mode 100644 index 0000000..ced3f0e --- /dev/null +++ b/inquiry_status_response.go @@ -0,0 +1,26 @@ +// SPDX-FileCopyrightText: 2022 M. Shulhan <ms@kilabit.info> +// SPDX-License-Identifier: GPL-3.0-or-later + +package duitku + +import "github.com/shuLhan/share/lib/math/big" + +type InquiryStatusResponse struct { + Response + + // Destination Bank Code. + BankCode string `json:"bankCode"` + + // Destination account number. + BankAccount string `json:"bankAccount"` + + // Disbursement transfer amount. + Amount *big.Rat `json:"amountTransfer"` + + // Bank Account owner. + AccountName string `json:"accountName"` + + // 9 Digit Customer reference number that will be printed when the + // transaction is successful. + CustRefNumber string `json:"custRefNumber"` +} |
