-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathmodel_dual_get_orders.go
45 lines (43 loc) · 1.61 KB
/
model_dual_get_orders.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
40
41
42
43
44
45
/*
* 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: support@mail.gate.io
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
package gateapi
type DualGetOrders struct {
// Order ID
Id int32 `json:"id,omitempty"`
// Plan ID
PlanId int32 `json:"plan_id,omitempty"`
// Copies
Copies string `json:"copies,omitempty"`
// Investment Amount
InvestAmount string `json:"invest_amount,omitempty"`
// Settlement Amount
SettlementAmount string `json:"settlement_amount,omitempty"`
// Creation time
CreateTime int32 `json:"create_time,omitempty"`
// Completion Time
CompleteTime int32 `json:"complete_time,omitempty"`
// Status: `INIT`-INIT `SETTLEMENT_SUCCESS`-Settlement Success `SETTLEMENT_PROCESSING`-SEttlement Processing `CANCELED`-Canceled `FAILED`-Failed
Status string `json:"status,omitempty"`
// Investment Currency
InvestCurrency string `json:"invest_currency,omitempty"`
// Strike Currency
ExerciseCurrency string `json:"exercise_currency,omitempty"`
// Strike price
ExercisePrice string `json:"exercise_price,omitempty"`
// settlement price
SettlementPrice string `json:"settlement_price,omitempty"`
// Settle currency
SettlementCurrency string `json:"settlement_currency,omitempty"`
// APY
ApyDisplay string `json:"apy_display,omitempty"`
// Settlement APY
ApySettlement string `json:"apy_settlement,omitempty"`
// Settlement time
DeliveryTime int32 `json:"delivery_time,omitempty"`
}