21 lines
497 B
Go
21 lines
497 B
Go
package response
|
|
|
|
type Balance struct {
|
|
PartnerID int64 `json:"partner_id"`
|
|
Balance float64 `json:"balance"`
|
|
AuthBalance float64 `json:"auth_balance"`
|
|
}
|
|
|
|
type BalanceInquiryResponse struct {
|
|
PartnerID int64 `json:"partner_id"`
|
|
Total int64 `json:"total"`
|
|
Amount int64 `json:"amount"`
|
|
Fee int64 `json:"fee"`
|
|
Token string `json:"token"`
|
|
}
|
|
|
|
type BalanceExecuteResponse struct {
|
|
TransactionID string `json:"transaction_id"`
|
|
Status string `json:"status"`
|
|
}
|