aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rtol_transfer_response.go13
1 files changed, 4 insertions, 9 deletions
diff --git a/rtol_transfer_response.go b/rtol_transfer_response.go
index 5392b76..8753d72 100644
--- a/rtol_transfer_response.go
+++ b/rtol_transfer_response.go
@@ -1,15 +1,10 @@
package duitku
-import "github.com/shuLhan/share/lib/math/big"
-
// RtolTransferResponse contains response from online transfer.
type RtolTransferResponse struct {
- Email string `json:"email"`
- BankCode string `json:"bankCode"`
- BankAccount string `json:"bankAccount"`
- AccountName string `json:"accountName"`
- CustRefNumber string `json:"custRefNumber"`
- Amount *big.Rat `json:"amountTransfer"`
+ Purpose string `json:"purpose"`
+
+ RtolInquiryResponse
- Response
+ UserID int64 `json:"userId"`
}