26 lines
393 B
Go
Raw Normal View History

2024-07-30 23:51:53 +07:00
package entity
type Balance struct {
PartnerID int64
Balance float64
AuthBalance float64
}
2024-07-31 23:02:15 +07:00
type BalanceWithdrawInquiry struct {
PartnerID int64
Amount int64
}
type BalanceWithdrawInquiryResponse struct {
PartnerID int64
Amount int64
Total int64
Fee int64
Token string
}
type WalletWithdrawResponse struct {
TransactionID string
Status string
}