8 lines
164 B
Go
Raw Normal View History

2023-10-08 15:59:42 +07:00
package response
2024-07-30 23:51:53 +07:00
type Balance struct {
PartnerID int64 `json:"partner_id"`
Balance float64 `json:"balance"`
AuthBalance float64 `json:"auth_balance"`
2023-10-08 15:59:42 +07:00
}