Update
This commit is contained in:
@@ -12,6 +12,13 @@ type LinkQuRequest struct {
|
||||
OrderItems []OrderItem
|
||||
}
|
||||
|
||||
type LinkQuCallback struct {
|
||||
PartnerReff string
|
||||
PaymentReff string
|
||||
Status string
|
||||
Signature string
|
||||
}
|
||||
|
||||
type LinkQuQRISResponse struct {
|
||||
Time int `json:"time"`
|
||||
Amount int64 `json:"amount"`
|
||||
@@ -56,3 +63,36 @@ type LinkQuPaymentVAResponse struct {
|
||||
Signature string `json:"signature"`
|
||||
UrlCallback string `json:"url_callback"`
|
||||
}
|
||||
|
||||
type LinkQuCheckStatusResponse struct {
|
||||
ResponseCode string `json:"rc"`
|
||||
ResponseDesc string `json:"rd"`
|
||||
Total int64 `json:"total"`
|
||||
Balance int64 `json:"balance"`
|
||||
Data LinkQuCheckStatusData `json:"data"`
|
||||
Request map[string]interface{} `json:"request"`
|
||||
LastUpdate string `json:"lastUpdate"`
|
||||
DataAdditional map[string]interface{} `json:"dataadditional"`
|
||||
}
|
||||
|
||||
type LinkQuCheckStatusData struct {
|
||||
InquiryReff int64 `json:"inquiry_reff"`
|
||||
PaymentReff int64 `json:"payment_reff"`
|
||||
PartnerReff string `json:"partner_reff"`
|
||||
Reference string `json:"reference"`
|
||||
ProductID string `json:"id_produk"`
|
||||
ProductName string `json:"nama_produk"`
|
||||
ProductGroup string `json:"grup_produk"`
|
||||
Debitted int64 `json:"debitted"`
|
||||
Amount int64 `json:"amount"`
|
||||
AmountFee int64 `json:"amountfee"`
|
||||
Info1 string `json:"info1"`
|
||||
Info2 string `json:"info2"`
|
||||
Info3 string `json:"info3"`
|
||||
Info4 string `json:"info4"`
|
||||
StatusTrx string `json:"status_trx"`
|
||||
StatusDesc string `json:"status_desc"`
|
||||
StatusPaid string `json:"status_paid"`
|
||||
Balance int64 `json:"balance"`
|
||||
TipsQRIS int64 `json:"tips_qris"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user