forked from gateio/gateapi-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodel_futures_account_book.go
More file actions
23 lines (21 loc) · 901 Bytes
/
model_futures_account_book.go
File metadata and controls
23 lines (21 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
* Gate API v4
*
* 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 FuturesAccountBook struct {
// Change time
Time float32 `json:"time,omitempty"`
// Change amount
Change string `json:"change,omitempty"`
// Balance after change
Balance string `json:"balance,omitempty"`
// Changing Type: - dnw: Deposit & Withdraw - pnl: Profit & Loss by reducing position - fee: Trading fee - refr: Referrer rebate - fund: Funding - point_dnw: POINT Deposit & Withdraw - point_fee: POINT Trading fee - point_refr: POINT Referrer rebate
Type string `json:"type,omitempty"`
// Comment
Text string `json:"text,omitempty"`
}