-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathmodel_currency_quota.go
More file actions
24 lines (22 loc) · 870 Bytes
/
model_currency_quota.go
File metadata and controls
24 lines (22 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
* 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
// Currency Quota
type CurrencyQuota struct {
// Currency
Currency string `json:"currency,omitempty"`
// Currency Index Price
IndexPrice string `json:"index_price,omitempty"`
// Minimum borrowing/collateral limit for the currency
MinQuota string `json:"min_quota,omitempty"`
// Remaining borrowing/collateral quota for the currency
LeftQuota string `json:"left_quota,omitempty"`
// Remaining currency limit converted to USDT
LeftQuoteUsdt string `json:"left_quote_usdt,omitempty"`
}