-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathmodel_broker_transaction_1.go
More file actions
32 lines (30 loc) · 1.16 KB
/
model_broker_transaction_1.go
File metadata and controls
32 lines (30 loc) · 1.16 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
/*
* 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
type BrokerTransaction1 struct {
// Transaction Time. (unix timestamp)
TransactionTime int64 `json:"transaction_time,omitempty"`
// User ID
UserId int64 `json:"user_id,omitempty"`
// Group name
GroupName string `json:"group_name,omitempty"`
// Fee amount (USDT)
Fee string `json:"fee,omitempty"`
// Currency pair
CurrencyPair string `json:"currency_pair,omitempty"`
// Transaction amount
Amount string `json:"amount,omitempty"`
// Fee currency
FeeAsset string `json:"fee_asset,omitempty"`
// Commission transaction type: Spot, Futures, Options, Alpha
Source string `json:"source,omitempty"`
SubBrokerInfo BrokerCommissionSubBrokerInfo `json:"sub_broker_info,omitempty"`
// Alpha contract address
AlphaContractAddr string `json:"alpha_contract_addr,omitempty"`
}