2024-09-28 13:07:37 +02:00
|
|
|
package models
|
|
|
|
|
2024-10-05 15:56:49 +02:00
|
|
|
// VoucherHoldingResponse represents a single voucher holding
|
|
|
|
type VoucherHoldingResponse struct {
|
|
|
|
Ok bool `json:"ok"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
Result struct {
|
|
|
|
Holdings []struct {
|
|
|
|
ContractAddress string `json:"contractAddress"`
|
|
|
|
TokenSymbol string `json:"tokenSymbol"`
|
|
|
|
TokenDecimals string `json:"tokenDecimals"`
|
|
|
|
Balance string `json:"balance"`
|
|
|
|
} `json:"holdings"`
|
|
|
|
} `json:"result"`
|
|
|
|
}
|