-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathmodel_futures_account_history.go
More file actions
34 lines (32 loc) · 1.24 KB
/
model_futures_account_history.go
File metadata and controls
34 lines (32 loc) · 1.24 KB
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
/*
* Gate API
*
* Welcome to Gate API APIv4 provides operations related to spot, margin, and contract trading, including public interfaces for querying market data and authenticated private interfaces for implementing API-based automated trading.
*
* Contact: support@mail.gate.com
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
package gateapi
// Statistical data
type FuturesAccountHistory struct {
// total amount of deposit and withdraw
Dnw string `json:"dnw,omitempty"`
// total amount of trading profit and loss
Pnl string `json:"pnl,omitempty"`
// total amount of fee
Fee string `json:"fee,omitempty"`
// total amount of referrer rebates
Refr string `json:"refr,omitempty"`
// total amount of funding costs
Fund string `json:"fund,omitempty"`
// total amount of point deposit and withdraw
PointDnw string `json:"point_dnw,omitempty"`
// total amount of point fee
PointFee string `json:"point_fee,omitempty"`
// total amount of referrer rebates of point fee
PointRefr string `json:"point_refr,omitempty"`
// total amount of perpetual contract bonus transfer
BonusDnw string `json:"bonus_dnw,omitempty"`
// total amount of perpetual contract bonus deduction
BonusOffset string `json:"bonus_offset,omitempty"`
}