mirror of
https://github.com/FlipsideCrypto/flip-rpc-client-go.git
synced 2026-02-06 10:56:45 +00:00
10 lines
270 B
Go
10 lines
270 B
Go
package dynamicquery
|
|
|
|
// Aggregate builds aggregate operations
|
|
type Aggregate struct {
|
|
Field string `json:"field"`
|
|
Label string `json:"label"`
|
|
Operation string `json:"operation"`
|
|
DecimalAdjustment int `json:"decimal_adjustment"`
|
|
}
|