-
Notifications
You must be signed in to change notification settings - Fork 42
/
model_agency_transaction.go
31 lines (29 loc) · 1.01 KB
/
model_agency_transaction.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
/*
* 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 AgencyTransaction 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
Fee string `json:"fee,omitempty"`
// Fee currency
FeeAsset string `json:"fee_asset,omitempty"`
// Currency pair
CurrencyPair string `json:"currency_pair,omitempty"`
// Commission Amount
Amount string `json:"amount,omitempty"`
// Commission Asset
AmountAsset string `json:"amount_asset,omitempty"`
// Source. SPOT - SPOT Rebate, FUTURES - Futures Rebate
Source string `json:"source,omitempty"`
}