-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathmodel_flash_swap_currency_pair.go
More file actions
28 lines (26 loc) · 1.04 KB
/
model_flash_swap_currency_pair.go
File metadata and controls
28 lines (26 loc) · 1.04 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
/*
* 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
// List all supported currencies in flash swap
type FlashSwapCurrencyPair struct {
// Currency pair, `BTC_USDT` represents selling `BTC` and buying `USDT`
CurrencyPair string `json:"currency_pair,omitempty"`
// Currency to sell
SellCurrency string `json:"sell_currency,omitempty"`
// Currency to buy
BuyCurrency string `json:"buy_currency,omitempty"`
// Minimum sell quantity
SellMinAmount string `json:"sell_min_amount,omitempty"`
// Maximum sell quantity
SellMaxAmount string `json:"sell_max_amount,omitempty"`
// Minimum buy quantity
BuyMinAmount string `json:"buy_min_amount,omitempty"`
// Maximum buy quantity
BuyMaxAmount string `json:"buy_max_amount,omitempty"`
}