mirror of
https://github.com/FlipsideCrypto/flip-rpc-client-go.git
synced 2026-02-06 10:56:45 +00:00
11 lines
321 B
Go
11 lines
321 B
Go
package dynamicquery
|
|
|
|
// Field selects a field to return
|
|
type Field struct {
|
|
Field string `json:"field"`
|
|
Label string `json:"label"`
|
|
DecimalAdjustment int `json:"decimal_adjustment"`
|
|
ToNegative bool `json:"to_negative"`
|
|
Datasets []Dataset `json:"datasets"`
|
|
}
|