-
Notifications
You must be signed in to change notification settings - Fork 42
/
model_dual_get_plans.go
39 lines (37 loc) · 1.29 KB
/
model_dual_get_plans.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
* Gate API v4
*
* Welcome to Gate.io API APIv4 provides spot, margin and futures trading operations. There are public APIs to retrieve the real-time market statistics, and private APIs which needs authentication to trade on user's behalf.
*
* Contact: [email protected]
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
package gateapi
type DualGetPlans struct {
// Plan ID
Id int32 `json:"id,omitempty"`
// Instrument Name
InstrumentName string `json:"instrument_name,omitempty"`
// Investment Currency
InvestCurrency string `json:"invest_currency,omitempty"`
// Strike Currency
ExerciseCurrency string `json:"exercise_currency,omitempty"`
// Strike price
ExercisePrice float64 `json:"exercise_price,omitempty"`
// Settlement time
DeliveryTime int32 `json:"delivery_time,omitempty"`
// Minimum Copies
MinCopies int32 `json:"min_copies,omitempty"`
// Maximum Copies
MaxCopies int32 `json:"max_copies,omitempty"`
// Per Unit Value
PerValue string `json:"per_value,omitempty"`
// APY
ApyDisplay string `json:"apy_display,omitempty"`
// start time
StartTime int32 `json:"start_time,omitempty"`
// Finished time
EndTime int32 `json:"end_time,omitempty"`
// Status: `NOTSTARTED`-not started `ONGOING`-ongoing `ENDED`-ended
Status string `json:"status,omitempty"`
}