snaptrade 2.0.87 → 2.0.89
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +280 -285
- data/lib/snaptrade/api/trading_api.rb +653 -0
- data/lib/snaptrade/models/cryptocurrency_pair.rb +12 -2
- data/lib/snaptrade/models/{crypto_spot_quote.rb → cryptocurrency_pair_quote.rb} +3 -3
- data/lib/snaptrade/models/{crypto_spot_order_preview.rb → simple_order_preview.rb} +5 -5
- data/lib/snaptrade/models/{crypto_spot_order_preview_estimated_fee.rb → simple_order_preview_estimated_fee.rb} +3 -3
- data/lib/snaptrade/models/{crypto_spot_order_request_body_time_in_force.rb → simple_order_request_body_time_in_force.rb} +3 -3
- data/lib/snaptrade/models/trading_instrument.rb +12 -2
- data/lib/snaptrade/models/{trading_crypto_spot_place_order_request.rb → trading_place_simple_order_request.rb} +14 -14
- data/lib/snaptrade/models/{trading_crypto_spot_symbols200_response.rb → trading_search_cryptocurrency_pair_instruments200_response.rb} +4 -4
- data/lib/snaptrade/version.rb +1 -1
- data/lib/snaptrade.rb +6 -10
- data/spec/api/trading_api_spec.rb +76 -0
- data/spec/models/{crypto_spot_quote_spec.rb → cryptocurrency_pair_quote_spec.rb} +6 -6
- data/spec/models/cryptocurrency_pair_spec.rb +6 -0
- data/spec/models/{crypto_spot_order_preview_estimated_fee_spec.rb → simple_order_preview_estimated_fee_spec.rb} +6 -6
- data/spec/models/{crypto_spot_order_preview_spec.rb → simple_order_preview_spec.rb} +6 -6
- data/spec/models/simple_order_request_body_time_in_force_spec.rb +23 -0
- data/spec/models/{trading_crypto_spot_place_order_request_spec.rb → trading_place_simple_order_request_spec.rb} +7 -7
- data/spec/models/trading_search_cryptocurrency_pair_instruments200_response_spec.rb +29 -0
- metadata +20 -26
- data/lib/snaptrade/api/crypto_spot_trading_api.rb +0 -698
- data/lib/snaptrade/models/trading_crypto_spot_cancel_order_request.rb +0 -222
- data/spec/api/crypto_spot_trading_api_spec.rb +0 -107
- data/spec/models/crypto_spot_order_request_body_time_in_force_spec.rb +0 -23
- data/spec/models/trading_crypto_spot_cancel_order_request_spec.rb +0 -29
- data/spec/models/trading_crypto_spot_symbols200_response_spec.rb +0 -29
@@ -1,698 +0,0 @@
|
|
1
|
-
=begin
|
2
|
-
#SnapTrade
|
3
|
-
|
4
|
-
#Connect brokerage accounts to your app for live positions and trading
|
5
|
-
|
6
|
-
The version of the OpenAPI document: 1.0.0
|
7
|
-
Contact: api@snaptrade.com
|
8
|
-
=end
|
9
|
-
|
10
|
-
require 'cgi'
|
11
|
-
|
12
|
-
module SnapTrade
|
13
|
-
class CryptoSpotTradingApi
|
14
|
-
attr_accessor :api_client
|
15
|
-
|
16
|
-
def initialize(api_client = ApiClient.default)
|
17
|
-
@api_client = api_client
|
18
|
-
end
|
19
|
-
|
20
|
-
# Cancel a crypto spot order.
|
21
|
-
#
|
22
|
-
# Cancels a cryptocurrency spot order in the specified account.
|
23
|
-
#
|
24
|
-
# @param brokerage_order_id [String] Order ID returned by brokerage. This is the unique identifier for the order in the brokerage system.
|
25
|
-
# @param user_id [String]
|
26
|
-
# @param user_secret [String]
|
27
|
-
# @param account_id [String]
|
28
|
-
# @param body [TradingCryptoSpotCancelOrderRequest]
|
29
|
-
# @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
|
30
|
-
def crypto_spot_cancel_order(brokerage_order_id:, user_id:, user_secret:, account_id:, extra: {})
|
31
|
-
_body = {}
|
32
|
-
_body[:brokerage_order_id] = brokerage_order_id if brokerage_order_id != SENTINEL
|
33
|
-
trading_crypto_spot_cancel_order_request = _body
|
34
|
-
data, _status_code, _headers = crypto_spot_cancel_order_with_http_info_impl(user_id, user_secret, account_id, trading_crypto_spot_cancel_order_request, extra)
|
35
|
-
data
|
36
|
-
end
|
37
|
-
|
38
|
-
# Cancel a crypto spot order.
|
39
|
-
#
|
40
|
-
# Cancels a cryptocurrency spot order in the specified account.
|
41
|
-
#
|
42
|
-
# @param brokerage_order_id [String] Order ID returned by brokerage. This is the unique identifier for the order in the brokerage system.
|
43
|
-
# @param user_id [String]
|
44
|
-
# @param user_secret [String]
|
45
|
-
# @param account_id [String]
|
46
|
-
# @param body [TradingCryptoSpotCancelOrderRequest]
|
47
|
-
# @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
|
48
|
-
def crypto_spot_cancel_order_with_http_info(brokerage_order_id:, user_id:, user_secret:, account_id:, extra: {})
|
49
|
-
_body = {}
|
50
|
-
_body[:brokerage_order_id] = brokerage_order_id if brokerage_order_id != SENTINEL
|
51
|
-
trading_crypto_spot_cancel_order_request = _body
|
52
|
-
crypto_spot_cancel_order_with_http_info_impl(user_id, user_secret, account_id, trading_crypto_spot_cancel_order_request, extra)
|
53
|
-
end
|
54
|
-
|
55
|
-
# Cancel a crypto spot order.
|
56
|
-
# Cancels a cryptocurrency spot order in the specified account.
|
57
|
-
# @param user_id [String]
|
58
|
-
# @param user_secret [String]
|
59
|
-
# @param account_id [String]
|
60
|
-
# @param trading_crypto_spot_cancel_order_request [TradingCryptoSpotCancelOrderRequest]
|
61
|
-
# @param [Hash] opts the optional parameters
|
62
|
-
# @return [OrderUpdatedResponse]
|
63
|
-
private def crypto_spot_cancel_order_impl(user_id, user_secret, account_id, trading_crypto_spot_cancel_order_request, opts = {})
|
64
|
-
data, _status_code, _headers = crypto_spot_cancel_order_with_http_info(user_id, user_secret, account_id, trading_crypto_spot_cancel_order_request, opts)
|
65
|
-
data
|
66
|
-
end
|
67
|
-
|
68
|
-
# Cancel a crypto spot order.
|
69
|
-
# Cancels a cryptocurrency spot order in the specified account.
|
70
|
-
# @param user_id [String]
|
71
|
-
# @param user_secret [String]
|
72
|
-
# @param account_id [String]
|
73
|
-
# @param trading_crypto_spot_cancel_order_request [TradingCryptoSpotCancelOrderRequest]
|
74
|
-
# @param [Hash] opts the optional parameters
|
75
|
-
# @return [Array<(OrderUpdatedResponse, Integer, Hash)>] OrderUpdatedResponse data, response status code and response headers
|
76
|
-
private def crypto_spot_cancel_order_with_http_info_impl(user_id, user_secret, account_id, trading_crypto_spot_cancel_order_request, opts = {})
|
77
|
-
if @api_client.config.debugging
|
78
|
-
@api_client.config.logger.debug 'Calling API: CryptoSpotTradingApi.crypto_spot_cancel_order ...'
|
79
|
-
end
|
80
|
-
# verify the required parameter 'user_id' is set
|
81
|
-
if @api_client.config.client_side_validation && user_id.nil?
|
82
|
-
fail ArgumentError, "Missing the required parameter 'user_id' when calling CryptoSpotTradingApi.crypto_spot_cancel_order"
|
83
|
-
end
|
84
|
-
# verify the required parameter 'user_secret' is set
|
85
|
-
if @api_client.config.client_side_validation && user_secret.nil?
|
86
|
-
fail ArgumentError, "Missing the required parameter 'user_secret' when calling CryptoSpotTradingApi.crypto_spot_cancel_order"
|
87
|
-
end
|
88
|
-
# verify the required parameter 'account_id' is set
|
89
|
-
if @api_client.config.client_side_validation && account_id.nil?
|
90
|
-
fail ArgumentError, "Missing the required parameter 'account_id' when calling CryptoSpotTradingApi.crypto_spot_cancel_order"
|
91
|
-
end
|
92
|
-
# verify the required parameter 'trading_crypto_spot_cancel_order_request' is set
|
93
|
-
if @api_client.config.client_side_validation && trading_crypto_spot_cancel_order_request.nil?
|
94
|
-
fail ArgumentError, "Missing the required parameter 'trading_crypto_spot_cancel_order_request' when calling CryptoSpotTradingApi.crypto_spot_cancel_order"
|
95
|
-
end
|
96
|
-
# resource path
|
97
|
-
local_var_path = '/accounts/{accountId}/trading/crypto/spot/cancelOrder'.sub('{' + 'accountId' + '}', CGI.escape(account_id.to_s))
|
98
|
-
|
99
|
-
# query parameters
|
100
|
-
query_params = opts[:query_params] || {}
|
101
|
-
query_params[:'userId'] = user_id
|
102
|
-
query_params[:'userSecret'] = user_secret
|
103
|
-
|
104
|
-
# header parameters
|
105
|
-
header_params = opts[:header_params] || {}
|
106
|
-
# HTTP header 'Accept' (if needed)
|
107
|
-
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
108
|
-
# HTTP header 'Content-Type'
|
109
|
-
content_type = @api_client.select_header_content_type(['application/json'])
|
110
|
-
if !content_type.nil?
|
111
|
-
header_params['Content-Type'] = content_type
|
112
|
-
end
|
113
|
-
|
114
|
-
# form parameters
|
115
|
-
form_params = opts[:form_params] || {}
|
116
|
-
|
117
|
-
# http body (model)
|
118
|
-
post_body = opts[:debug_body] || @api_client.object_to_http_body(trading_crypto_spot_cancel_order_request)
|
119
|
-
|
120
|
-
# return_type
|
121
|
-
return_type = opts[:debug_return_type] || 'OrderUpdatedResponse'
|
122
|
-
|
123
|
-
# auth_names
|
124
|
-
auth_names = opts[:debug_auth_names] || ['PartnerClientId', 'PartnerSignature', 'PartnerTimestamp']
|
125
|
-
|
126
|
-
new_options = opts.merge(
|
127
|
-
:operation => :"CryptoSpotTradingApi.crypto_spot_cancel_order",
|
128
|
-
:header_params => header_params,
|
129
|
-
:query_params => query_params,
|
130
|
-
:form_params => form_params,
|
131
|
-
:body => post_body,
|
132
|
-
:auth_names => auth_names,
|
133
|
-
:return_type => return_type
|
134
|
-
)
|
135
|
-
|
136
|
-
data, status_code, headers, response = @api_client.call_api(:POST, local_var_path, new_options)
|
137
|
-
if @api_client.config.debugging
|
138
|
-
@api_client.config.logger.debug "API called: CryptoSpotTradingApi#crypto_spot_cancel_order\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
139
|
-
end
|
140
|
-
return data, status_code, headers, response
|
141
|
-
end
|
142
|
-
|
143
|
-
|
144
|
-
# Place a spot order on a crypto exchange
|
145
|
-
#
|
146
|
-
# Places a spot cryptocurrency order in the specified account.
|
147
|
-
# This endpoint does not compute the impact to the account balance from the order before submitting the order to the exchange.
|
148
|
-
#
|
149
|
-
# @param symbol [CryptocurrencyPair]
|
150
|
-
# @param side [ActionStrict] The action describes the intent or side of a trade. This is either `BUY` or `SELL`.
|
151
|
-
# @param type [Type] The type of order to place.
|
152
|
-
# @param time_in_force [CryptoSpotOrderRequestBodyTimeInForce] The Time in Force type for the order. This field indicates how long the order will remain active before it is executed or expires. - `GTC` - Good Til Canceled. The order is valid until it is executed or canceled. - `FOK` - Fill Or Kill. The order must be executed in its entirety immediately or be canceled completely. - `IOC` - Immediate Or Cancel. The order must be executed immediately. Any portion of the order that cannot be filled immediately will be canceled. - `GTD` - Good Til Date. The order is valid until the specified date.
|
153
|
-
# @param amount [Float] The amount of the base currency to buy or sell.
|
154
|
-
# @param user_id [String]
|
155
|
-
# @param user_secret [String]
|
156
|
-
# @param account_id [String]
|
157
|
-
# @param limit_price [Float] The limit price. Required if the order type is LIMIT, STOP_LOSS_LIMIT or TAKE_PROFIT_LIMIT.
|
158
|
-
# @param stop_price [Float] The stop price. Required if the order type is STOP_LOSS_MARKET, STOP_LOSS_LIMIT, TAKE_PROFIT_MARKET or TAKE_PROFIT_LIMIT.
|
159
|
-
# @param post_only [Boolean] Valid and required only for order type LIMIT. If true orders that would be filled immediately are rejected to avoid incurring TAKER fees.
|
160
|
-
# @param expiration_date [Time] The expiration date of the order. Required if the time_in_force is GTD.
|
161
|
-
# @param body [TradingCryptoSpotPlaceOrderRequest]
|
162
|
-
# @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
|
163
|
-
def crypto_spot_place_order(symbol:, side:, type:, time_in_force:, amount:, user_id:, user_secret:, account_id:, limit_price: SENTINEL, stop_price: SENTINEL, post_only: SENTINEL, expiration_date: SENTINEL, extra: {})
|
164
|
-
_body = {}
|
165
|
-
_body[:symbol] = symbol if symbol != SENTINEL
|
166
|
-
_body[:side] = side if side != SENTINEL
|
167
|
-
_body[:type] = type if type != SENTINEL
|
168
|
-
_body[:time_in_force] = time_in_force if time_in_force != SENTINEL
|
169
|
-
_body[:amount] = amount if amount != SENTINEL
|
170
|
-
_body[:limit_price] = limit_price if limit_price != SENTINEL
|
171
|
-
_body[:stop_price] = stop_price if stop_price != SENTINEL
|
172
|
-
_body[:post_only] = post_only if post_only != SENTINEL
|
173
|
-
_body[:expiration_date] = expiration_date if expiration_date != SENTINEL
|
174
|
-
trading_crypto_spot_place_order_request = _body
|
175
|
-
data, _status_code, _headers = crypto_spot_place_order_with_http_info_impl(user_id, user_secret, account_id, trading_crypto_spot_place_order_request, extra)
|
176
|
-
data
|
177
|
-
end
|
178
|
-
|
179
|
-
# Place a spot order on a crypto exchange
|
180
|
-
#
|
181
|
-
# Places a spot cryptocurrency order in the specified account.
|
182
|
-
# This endpoint does not compute the impact to the account balance from the order before submitting the order to the exchange.
|
183
|
-
#
|
184
|
-
# @param symbol [CryptocurrencyPair]
|
185
|
-
# @param side [ActionStrict] The action describes the intent or side of a trade. This is either `BUY` or `SELL`.
|
186
|
-
# @param type [Type] The type of order to place.
|
187
|
-
# @param time_in_force [CryptoSpotOrderRequestBodyTimeInForce] The Time in Force type for the order. This field indicates how long the order will remain active before it is executed or expires. - `GTC` - Good Til Canceled. The order is valid until it is executed or canceled. - `FOK` - Fill Or Kill. The order must be executed in its entirety immediately or be canceled completely. - `IOC` - Immediate Or Cancel. The order must be executed immediately. Any portion of the order that cannot be filled immediately will be canceled. - `GTD` - Good Til Date. The order is valid until the specified date.
|
188
|
-
# @param amount [Float] The amount of the base currency to buy or sell.
|
189
|
-
# @param user_id [String]
|
190
|
-
# @param user_secret [String]
|
191
|
-
# @param account_id [String]
|
192
|
-
# @param limit_price [Float] The limit price. Required if the order type is LIMIT, STOP_LOSS_LIMIT or TAKE_PROFIT_LIMIT.
|
193
|
-
# @param stop_price [Float] The stop price. Required if the order type is STOP_LOSS_MARKET, STOP_LOSS_LIMIT, TAKE_PROFIT_MARKET or TAKE_PROFIT_LIMIT.
|
194
|
-
# @param post_only [Boolean] Valid and required only for order type LIMIT. If true orders that would be filled immediately are rejected to avoid incurring TAKER fees.
|
195
|
-
# @param expiration_date [Time] The expiration date of the order. Required if the time_in_force is GTD.
|
196
|
-
# @param body [TradingCryptoSpotPlaceOrderRequest]
|
197
|
-
# @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
|
198
|
-
def crypto_spot_place_order_with_http_info(symbol:, side:, type:, time_in_force:, amount:, user_id:, user_secret:, account_id:, limit_price: SENTINEL, stop_price: SENTINEL, post_only: SENTINEL, expiration_date: SENTINEL, extra: {})
|
199
|
-
_body = {}
|
200
|
-
_body[:symbol] = symbol if symbol != SENTINEL
|
201
|
-
_body[:side] = side if side != SENTINEL
|
202
|
-
_body[:type] = type if type != SENTINEL
|
203
|
-
_body[:time_in_force] = time_in_force if time_in_force != SENTINEL
|
204
|
-
_body[:amount] = amount if amount != SENTINEL
|
205
|
-
_body[:limit_price] = limit_price if limit_price != SENTINEL
|
206
|
-
_body[:stop_price] = stop_price if stop_price != SENTINEL
|
207
|
-
_body[:post_only] = post_only if post_only != SENTINEL
|
208
|
-
_body[:expiration_date] = expiration_date if expiration_date != SENTINEL
|
209
|
-
trading_crypto_spot_place_order_request = _body
|
210
|
-
crypto_spot_place_order_with_http_info_impl(user_id, user_secret, account_id, trading_crypto_spot_place_order_request, extra)
|
211
|
-
end
|
212
|
-
|
213
|
-
# Place a spot order on a crypto exchange
|
214
|
-
# Places a spot cryptocurrency order in the specified account. This endpoint does not compute the impact to the account balance from the order before submitting the order to the exchange.
|
215
|
-
# @param user_id [String]
|
216
|
-
# @param user_secret [String]
|
217
|
-
# @param account_id [String]
|
218
|
-
# @param trading_crypto_spot_place_order_request [TradingCryptoSpotPlaceOrderRequest]
|
219
|
-
# @param [Hash] opts the optional parameters
|
220
|
-
# @return [OrderUpdatedResponse]
|
221
|
-
private def crypto_spot_place_order_impl(user_id, user_secret, account_id, trading_crypto_spot_place_order_request, opts = {})
|
222
|
-
data, _status_code, _headers = crypto_spot_place_order_with_http_info(user_id, user_secret, account_id, trading_crypto_spot_place_order_request, opts)
|
223
|
-
data
|
224
|
-
end
|
225
|
-
|
226
|
-
# Place a spot order on a crypto exchange
|
227
|
-
# Places a spot cryptocurrency order in the specified account. This endpoint does not compute the impact to the account balance from the order before submitting the order to the exchange.
|
228
|
-
# @param user_id [String]
|
229
|
-
# @param user_secret [String]
|
230
|
-
# @param account_id [String]
|
231
|
-
# @param trading_crypto_spot_place_order_request [TradingCryptoSpotPlaceOrderRequest]
|
232
|
-
# @param [Hash] opts the optional parameters
|
233
|
-
# @return [Array<(OrderUpdatedResponse, Integer, Hash)>] OrderUpdatedResponse data, response status code and response headers
|
234
|
-
private def crypto_spot_place_order_with_http_info_impl(user_id, user_secret, account_id, trading_crypto_spot_place_order_request, opts = {})
|
235
|
-
if @api_client.config.debugging
|
236
|
-
@api_client.config.logger.debug 'Calling API: CryptoSpotTradingApi.crypto_spot_place_order ...'
|
237
|
-
end
|
238
|
-
# verify the required parameter 'user_id' is set
|
239
|
-
if @api_client.config.client_side_validation && user_id.nil?
|
240
|
-
fail ArgumentError, "Missing the required parameter 'user_id' when calling CryptoSpotTradingApi.crypto_spot_place_order"
|
241
|
-
end
|
242
|
-
# verify the required parameter 'user_secret' is set
|
243
|
-
if @api_client.config.client_side_validation && user_secret.nil?
|
244
|
-
fail ArgumentError, "Missing the required parameter 'user_secret' when calling CryptoSpotTradingApi.crypto_spot_place_order"
|
245
|
-
end
|
246
|
-
# verify the required parameter 'account_id' is set
|
247
|
-
if @api_client.config.client_side_validation && account_id.nil?
|
248
|
-
fail ArgumentError, "Missing the required parameter 'account_id' when calling CryptoSpotTradingApi.crypto_spot_place_order"
|
249
|
-
end
|
250
|
-
# verify the required parameter 'trading_crypto_spot_place_order_request' is set
|
251
|
-
if @api_client.config.client_side_validation && trading_crypto_spot_place_order_request.nil?
|
252
|
-
fail ArgumentError, "Missing the required parameter 'trading_crypto_spot_place_order_request' when calling CryptoSpotTradingApi.crypto_spot_place_order"
|
253
|
-
end
|
254
|
-
# resource path
|
255
|
-
local_var_path = '/accounts/{accountId}/trading/crypto/spot/placeOrder'.sub('{' + 'accountId' + '}', CGI.escape(account_id.to_s))
|
256
|
-
|
257
|
-
# query parameters
|
258
|
-
query_params = opts[:query_params] || {}
|
259
|
-
query_params[:'userId'] = user_id
|
260
|
-
query_params[:'userSecret'] = user_secret
|
261
|
-
|
262
|
-
# header parameters
|
263
|
-
header_params = opts[:header_params] || {}
|
264
|
-
# HTTP header 'Accept' (if needed)
|
265
|
-
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
266
|
-
# HTTP header 'Content-Type'
|
267
|
-
content_type = @api_client.select_header_content_type(['application/json'])
|
268
|
-
if !content_type.nil?
|
269
|
-
header_params['Content-Type'] = content_type
|
270
|
-
end
|
271
|
-
|
272
|
-
# form parameters
|
273
|
-
form_params = opts[:form_params] || {}
|
274
|
-
|
275
|
-
# http body (model)
|
276
|
-
post_body = opts[:debug_body] || @api_client.object_to_http_body(trading_crypto_spot_place_order_request)
|
277
|
-
|
278
|
-
# return_type
|
279
|
-
return_type = opts[:debug_return_type] || 'OrderUpdatedResponse'
|
280
|
-
|
281
|
-
# auth_names
|
282
|
-
auth_names = opts[:debug_auth_names] || ['PartnerClientId', 'PartnerSignature', 'PartnerTimestamp']
|
283
|
-
|
284
|
-
new_options = opts.merge(
|
285
|
-
:operation => :"CryptoSpotTradingApi.crypto_spot_place_order",
|
286
|
-
:header_params => header_params,
|
287
|
-
:query_params => query_params,
|
288
|
-
:form_params => form_params,
|
289
|
-
:body => post_body,
|
290
|
-
:auth_names => auth_names,
|
291
|
-
:return_type => return_type
|
292
|
-
)
|
293
|
-
|
294
|
-
data, status_code, headers, response = @api_client.call_api(:POST, local_var_path, new_options)
|
295
|
-
if @api_client.config.debugging
|
296
|
-
@api_client.config.logger.debug "API called: CryptoSpotTradingApi#crypto_spot_place_order\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
297
|
-
end
|
298
|
-
return data, status_code, headers, response
|
299
|
-
end
|
300
|
-
|
301
|
-
|
302
|
-
# Preview a crypto spot order
|
303
|
-
#
|
304
|
-
# Previews a cryptocurrency spot order using the specified account.
|
305
|
-
#
|
306
|
-
# @param symbol [CryptocurrencyPair]
|
307
|
-
# @param side [ActionStrict] The action describes the intent or side of a trade. This is either `BUY` or `SELL`.
|
308
|
-
# @param type [Type] The type of order to place.
|
309
|
-
# @param time_in_force [CryptoSpotOrderRequestBodyTimeInForce] The Time in Force type for the order. This field indicates how long the order will remain active before it is executed or expires. - `GTC` - Good Til Canceled. The order is valid until it is executed or canceled. - `FOK` - Fill Or Kill. The order must be executed in its entirety immediately or be canceled completely. - `IOC` - Immediate Or Cancel. The order must be executed immediately. Any portion of the order that cannot be filled immediately will be canceled. - `GTD` - Good Til Date. The order is valid until the specified date.
|
310
|
-
# @param amount [Float] The amount of the base currency to buy or sell.
|
311
|
-
# @param user_id [String]
|
312
|
-
# @param user_secret [String]
|
313
|
-
# @param account_id [String]
|
314
|
-
# @param limit_price [Float] The limit price. Required if the order type is LIMIT, STOP_LOSS_LIMIT or TAKE_PROFIT_LIMIT.
|
315
|
-
# @param stop_price [Float] The stop price. Required if the order type is STOP_LOSS_MARKET, STOP_LOSS_LIMIT, TAKE_PROFIT_MARKET or TAKE_PROFIT_LIMIT.
|
316
|
-
# @param post_only [Boolean] Valid and required only for order type LIMIT. If true orders that would be filled immediately are rejected to avoid incurring TAKER fees.
|
317
|
-
# @param expiration_date [Time] The expiration date of the order. Required if the time_in_force is GTD.
|
318
|
-
# @param body [TradingCryptoSpotPlaceOrderRequest]
|
319
|
-
# @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
|
320
|
-
def crypto_spot_preview_order(symbol:, side:, type:, time_in_force:, amount:, user_id:, user_secret:, account_id:, limit_price: SENTINEL, stop_price: SENTINEL, post_only: SENTINEL, expiration_date: SENTINEL, extra: {})
|
321
|
-
_body = {}
|
322
|
-
_body[:symbol] = symbol if symbol != SENTINEL
|
323
|
-
_body[:side] = side if side != SENTINEL
|
324
|
-
_body[:type] = type if type != SENTINEL
|
325
|
-
_body[:time_in_force] = time_in_force if time_in_force != SENTINEL
|
326
|
-
_body[:amount] = amount if amount != SENTINEL
|
327
|
-
_body[:limit_price] = limit_price if limit_price != SENTINEL
|
328
|
-
_body[:stop_price] = stop_price if stop_price != SENTINEL
|
329
|
-
_body[:post_only] = post_only if post_only != SENTINEL
|
330
|
-
_body[:expiration_date] = expiration_date if expiration_date != SENTINEL
|
331
|
-
trading_crypto_spot_place_order_request = _body
|
332
|
-
data, _status_code, _headers = crypto_spot_preview_order_with_http_info_impl(user_id, user_secret, account_id, trading_crypto_spot_place_order_request, extra)
|
333
|
-
data
|
334
|
-
end
|
335
|
-
|
336
|
-
# Preview a crypto spot order
|
337
|
-
#
|
338
|
-
# Previews a cryptocurrency spot order using the specified account.
|
339
|
-
#
|
340
|
-
# @param symbol [CryptocurrencyPair]
|
341
|
-
# @param side [ActionStrict] The action describes the intent or side of a trade. This is either `BUY` or `SELL`.
|
342
|
-
# @param type [Type] The type of order to place.
|
343
|
-
# @param time_in_force [CryptoSpotOrderRequestBodyTimeInForce] The Time in Force type for the order. This field indicates how long the order will remain active before it is executed or expires. - `GTC` - Good Til Canceled. The order is valid until it is executed or canceled. - `FOK` - Fill Or Kill. The order must be executed in its entirety immediately or be canceled completely. - `IOC` - Immediate Or Cancel. The order must be executed immediately. Any portion of the order that cannot be filled immediately will be canceled. - `GTD` - Good Til Date. The order is valid until the specified date.
|
344
|
-
# @param amount [Float] The amount of the base currency to buy or sell.
|
345
|
-
# @param user_id [String]
|
346
|
-
# @param user_secret [String]
|
347
|
-
# @param account_id [String]
|
348
|
-
# @param limit_price [Float] The limit price. Required if the order type is LIMIT, STOP_LOSS_LIMIT or TAKE_PROFIT_LIMIT.
|
349
|
-
# @param stop_price [Float] The stop price. Required if the order type is STOP_LOSS_MARKET, STOP_LOSS_LIMIT, TAKE_PROFIT_MARKET or TAKE_PROFIT_LIMIT.
|
350
|
-
# @param post_only [Boolean] Valid and required only for order type LIMIT. If true orders that would be filled immediately are rejected to avoid incurring TAKER fees.
|
351
|
-
# @param expiration_date [Time] The expiration date of the order. Required if the time_in_force is GTD.
|
352
|
-
# @param body [TradingCryptoSpotPlaceOrderRequest]
|
353
|
-
# @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
|
354
|
-
def crypto_spot_preview_order_with_http_info(symbol:, side:, type:, time_in_force:, amount:, user_id:, user_secret:, account_id:, limit_price: SENTINEL, stop_price: SENTINEL, post_only: SENTINEL, expiration_date: SENTINEL, extra: {})
|
355
|
-
_body = {}
|
356
|
-
_body[:symbol] = symbol if symbol != SENTINEL
|
357
|
-
_body[:side] = side if side != SENTINEL
|
358
|
-
_body[:type] = type if type != SENTINEL
|
359
|
-
_body[:time_in_force] = time_in_force if time_in_force != SENTINEL
|
360
|
-
_body[:amount] = amount if amount != SENTINEL
|
361
|
-
_body[:limit_price] = limit_price if limit_price != SENTINEL
|
362
|
-
_body[:stop_price] = stop_price if stop_price != SENTINEL
|
363
|
-
_body[:post_only] = post_only if post_only != SENTINEL
|
364
|
-
_body[:expiration_date] = expiration_date if expiration_date != SENTINEL
|
365
|
-
trading_crypto_spot_place_order_request = _body
|
366
|
-
crypto_spot_preview_order_with_http_info_impl(user_id, user_secret, account_id, trading_crypto_spot_place_order_request, extra)
|
367
|
-
end
|
368
|
-
|
369
|
-
# Preview a crypto spot order
|
370
|
-
# Previews a cryptocurrency spot order using the specified account.
|
371
|
-
# @param user_id [String]
|
372
|
-
# @param user_secret [String]
|
373
|
-
# @param account_id [String]
|
374
|
-
# @param trading_crypto_spot_place_order_request [TradingCryptoSpotPlaceOrderRequest]
|
375
|
-
# @param [Hash] opts the optional parameters
|
376
|
-
# @return [CryptoSpotOrderPreview]
|
377
|
-
private def crypto_spot_preview_order_impl(user_id, user_secret, account_id, trading_crypto_spot_place_order_request, opts = {})
|
378
|
-
data, _status_code, _headers = crypto_spot_preview_order_with_http_info(user_id, user_secret, account_id, trading_crypto_spot_place_order_request, opts)
|
379
|
-
data
|
380
|
-
end
|
381
|
-
|
382
|
-
# Preview a crypto spot order
|
383
|
-
# Previews a cryptocurrency spot order using the specified account.
|
384
|
-
# @param user_id [String]
|
385
|
-
# @param user_secret [String]
|
386
|
-
# @param account_id [String]
|
387
|
-
# @param trading_crypto_spot_place_order_request [TradingCryptoSpotPlaceOrderRequest]
|
388
|
-
# @param [Hash] opts the optional parameters
|
389
|
-
# @return [Array<(CryptoSpotOrderPreview, Integer, Hash)>] CryptoSpotOrderPreview data, response status code and response headers
|
390
|
-
private def crypto_spot_preview_order_with_http_info_impl(user_id, user_secret, account_id, trading_crypto_spot_place_order_request, opts = {})
|
391
|
-
if @api_client.config.debugging
|
392
|
-
@api_client.config.logger.debug 'Calling API: CryptoSpotTradingApi.crypto_spot_preview_order ...'
|
393
|
-
end
|
394
|
-
# verify the required parameter 'user_id' is set
|
395
|
-
if @api_client.config.client_side_validation && user_id.nil?
|
396
|
-
fail ArgumentError, "Missing the required parameter 'user_id' when calling CryptoSpotTradingApi.crypto_spot_preview_order"
|
397
|
-
end
|
398
|
-
# verify the required parameter 'user_secret' is set
|
399
|
-
if @api_client.config.client_side_validation && user_secret.nil?
|
400
|
-
fail ArgumentError, "Missing the required parameter 'user_secret' when calling CryptoSpotTradingApi.crypto_spot_preview_order"
|
401
|
-
end
|
402
|
-
# verify the required parameter 'account_id' is set
|
403
|
-
if @api_client.config.client_side_validation && account_id.nil?
|
404
|
-
fail ArgumentError, "Missing the required parameter 'account_id' when calling CryptoSpotTradingApi.crypto_spot_preview_order"
|
405
|
-
end
|
406
|
-
# verify the required parameter 'trading_crypto_spot_place_order_request' is set
|
407
|
-
if @api_client.config.client_side_validation && trading_crypto_spot_place_order_request.nil?
|
408
|
-
fail ArgumentError, "Missing the required parameter 'trading_crypto_spot_place_order_request' when calling CryptoSpotTradingApi.crypto_spot_preview_order"
|
409
|
-
end
|
410
|
-
# resource path
|
411
|
-
local_var_path = '/accounts/{accountId}/trading/crypto/spot/previewOrder'.sub('{' + 'accountId' + '}', CGI.escape(account_id.to_s))
|
412
|
-
|
413
|
-
# query parameters
|
414
|
-
query_params = opts[:query_params] || {}
|
415
|
-
query_params[:'userId'] = user_id
|
416
|
-
query_params[:'userSecret'] = user_secret
|
417
|
-
|
418
|
-
# header parameters
|
419
|
-
header_params = opts[:header_params] || {}
|
420
|
-
# HTTP header 'Accept' (if needed)
|
421
|
-
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
422
|
-
# HTTP header 'Content-Type'
|
423
|
-
content_type = @api_client.select_header_content_type(['application/json'])
|
424
|
-
if !content_type.nil?
|
425
|
-
header_params['Content-Type'] = content_type
|
426
|
-
end
|
427
|
-
|
428
|
-
# form parameters
|
429
|
-
form_params = opts[:form_params] || {}
|
430
|
-
|
431
|
-
# http body (model)
|
432
|
-
post_body = opts[:debug_body] || @api_client.object_to_http_body(trading_crypto_spot_place_order_request)
|
433
|
-
|
434
|
-
# return_type
|
435
|
-
return_type = opts[:debug_return_type] || 'CryptoSpotOrderPreview'
|
436
|
-
|
437
|
-
# auth_names
|
438
|
-
auth_names = opts[:debug_auth_names] || ['PartnerClientId', 'PartnerSignature', 'PartnerTimestamp']
|
439
|
-
|
440
|
-
new_options = opts.merge(
|
441
|
-
:operation => :"CryptoSpotTradingApi.crypto_spot_preview_order",
|
442
|
-
:header_params => header_params,
|
443
|
-
:query_params => query_params,
|
444
|
-
:form_params => form_params,
|
445
|
-
:body => post_body,
|
446
|
-
:auth_names => auth_names,
|
447
|
-
:return_type => return_type
|
448
|
-
)
|
449
|
-
|
450
|
-
data, status_code, headers, response = @api_client.call_api(:POST, local_var_path, new_options)
|
451
|
-
if @api_client.config.debugging
|
452
|
-
@api_client.config.logger.debug "API called: CryptoSpotTradingApi#crypto_spot_preview_order\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
453
|
-
end
|
454
|
-
return data, status_code, headers, response
|
455
|
-
end
|
456
|
-
|
457
|
-
|
458
|
-
# Get a cryptocurrency spot market quote
|
459
|
-
#
|
460
|
-
# Gets a quote for the specified account.
|
461
|
-
#
|
462
|
-
# @param user_id [String]
|
463
|
-
# @param user_secret [String]
|
464
|
-
# @param account_id [String]
|
465
|
-
# @param base [String]
|
466
|
-
# @param quote [String]
|
467
|
-
# @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
|
468
|
-
def crypto_spot_quote(user_id:, user_secret:, account_id:, base:, quote:, extra: {})
|
469
|
-
data, _status_code, _headers = crypto_spot_quote_with_http_info_impl(user_id, user_secret, account_id, base, quote, extra)
|
470
|
-
data
|
471
|
-
end
|
472
|
-
|
473
|
-
# Get a cryptocurrency spot market quote
|
474
|
-
#
|
475
|
-
# Gets a quote for the specified account.
|
476
|
-
#
|
477
|
-
# @param user_id [String]
|
478
|
-
# @param user_secret [String]
|
479
|
-
# @param account_id [String]
|
480
|
-
# @param base [String]
|
481
|
-
# @param quote [String]
|
482
|
-
# @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
|
483
|
-
def crypto_spot_quote_with_http_info(user_id:, user_secret:, account_id:, base:, quote:, extra: {})
|
484
|
-
crypto_spot_quote_with_http_info_impl(user_id, user_secret, account_id, base, quote, extra)
|
485
|
-
end
|
486
|
-
|
487
|
-
# Get a cryptocurrency spot market quote
|
488
|
-
# Gets a quote for the specified account.
|
489
|
-
# @param user_id [String]
|
490
|
-
# @param user_secret [String]
|
491
|
-
# @param account_id [String]
|
492
|
-
# @param base [String]
|
493
|
-
# @param quote [String]
|
494
|
-
# @param [Hash] opts the optional parameters
|
495
|
-
# @return [CryptoSpotQuote]
|
496
|
-
private def crypto_spot_quote_impl(user_id, user_secret, account_id, base, quote, opts = {})
|
497
|
-
data, _status_code, _headers = crypto_spot_quote_with_http_info(user_id, user_secret, account_id, base, quote, opts)
|
498
|
-
data
|
499
|
-
end
|
500
|
-
|
501
|
-
# Get a cryptocurrency spot market quote
|
502
|
-
# Gets a quote for the specified account.
|
503
|
-
# @param user_id [String]
|
504
|
-
# @param user_secret [String]
|
505
|
-
# @param account_id [String]
|
506
|
-
# @param base [String]
|
507
|
-
# @param quote [String]
|
508
|
-
# @param [Hash] opts the optional parameters
|
509
|
-
# @return [Array<(CryptoSpotQuote, Integer, Hash)>] CryptoSpotQuote data, response status code and response headers
|
510
|
-
private def crypto_spot_quote_with_http_info_impl(user_id, user_secret, account_id, base, quote, opts = {})
|
511
|
-
if @api_client.config.debugging
|
512
|
-
@api_client.config.logger.debug 'Calling API: CryptoSpotTradingApi.crypto_spot_quote ...'
|
513
|
-
end
|
514
|
-
# verify the required parameter 'user_id' is set
|
515
|
-
if @api_client.config.client_side_validation && user_id.nil?
|
516
|
-
fail ArgumentError, "Missing the required parameter 'user_id' when calling CryptoSpotTradingApi.crypto_spot_quote"
|
517
|
-
end
|
518
|
-
# verify the required parameter 'user_secret' is set
|
519
|
-
if @api_client.config.client_side_validation && user_secret.nil?
|
520
|
-
fail ArgumentError, "Missing the required parameter 'user_secret' when calling CryptoSpotTradingApi.crypto_spot_quote"
|
521
|
-
end
|
522
|
-
# verify the required parameter 'account_id' is set
|
523
|
-
if @api_client.config.client_side_validation && account_id.nil?
|
524
|
-
fail ArgumentError, "Missing the required parameter 'account_id' when calling CryptoSpotTradingApi.crypto_spot_quote"
|
525
|
-
end
|
526
|
-
# verify the required parameter 'base' is set
|
527
|
-
if @api_client.config.client_side_validation && base.nil?
|
528
|
-
fail ArgumentError, "Missing the required parameter 'base' when calling CryptoSpotTradingApi.crypto_spot_quote"
|
529
|
-
end
|
530
|
-
# verify the required parameter 'quote' is set
|
531
|
-
if @api_client.config.client_side_validation && quote.nil?
|
532
|
-
fail ArgumentError, "Missing the required parameter 'quote' when calling CryptoSpotTradingApi.crypto_spot_quote"
|
533
|
-
end
|
534
|
-
# resource path
|
535
|
-
local_var_path = '/accounts/{accountId}/trading/crypto/spot/quote'.sub('{' + 'accountId' + '}', CGI.escape(account_id.to_s))
|
536
|
-
|
537
|
-
# query parameters
|
538
|
-
query_params = opts[:query_params] || {}
|
539
|
-
query_params[:'userId'] = user_id
|
540
|
-
query_params[:'userSecret'] = user_secret
|
541
|
-
query_params[:'base'] = base
|
542
|
-
query_params[:'quote'] = quote
|
543
|
-
|
544
|
-
# header parameters
|
545
|
-
header_params = opts[:header_params] || {}
|
546
|
-
# HTTP header 'Accept' (if needed)
|
547
|
-
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
548
|
-
|
549
|
-
# form parameters
|
550
|
-
form_params = opts[:form_params] || {}
|
551
|
-
|
552
|
-
# http body (model)
|
553
|
-
post_body = opts[:debug_body]
|
554
|
-
|
555
|
-
# return_type
|
556
|
-
return_type = opts[:debug_return_type] || 'CryptoSpotQuote'
|
557
|
-
|
558
|
-
# auth_names
|
559
|
-
auth_names = opts[:debug_auth_names] || ['PartnerClientId', 'PartnerSignature', 'PartnerTimestamp']
|
560
|
-
|
561
|
-
new_options = opts.merge(
|
562
|
-
:operation => :"CryptoSpotTradingApi.crypto_spot_quote",
|
563
|
-
:header_params => header_params,
|
564
|
-
:query_params => query_params,
|
565
|
-
:form_params => form_params,
|
566
|
-
:body => post_body,
|
567
|
-
:auth_names => auth_names,
|
568
|
-
:return_type => return_type
|
569
|
-
)
|
570
|
-
|
571
|
-
data, status_code, headers, response = @api_client.call_api(:GET, local_var_path, new_options)
|
572
|
-
if @api_client.config.debugging
|
573
|
-
@api_client.config.logger.debug "API called: CryptoSpotTradingApi#crypto_spot_quote\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
574
|
-
end
|
575
|
-
return data, status_code, headers, response
|
576
|
-
end
|
577
|
-
|
578
|
-
|
579
|
-
# Search crypto spot symbols
|
580
|
-
#
|
581
|
-
# Searches cryptocurrency spot symbols accessible to the specified account.
|
582
|
-
#
|
583
|
-
# @param user_id [String]
|
584
|
-
# @param user_secret [String]
|
585
|
-
# @param account_id [String]
|
586
|
-
# @param base [String]
|
587
|
-
# @param quote [String]
|
588
|
-
# @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
|
589
|
-
def crypto_spot_symbols(user_id:, user_secret:, account_id:, base: SENTINEL, quote: SENTINEL, extra: {})
|
590
|
-
extra[:base] = base if base != SENTINEL
|
591
|
-
extra[:quote] = quote if quote != SENTINEL
|
592
|
-
data, _status_code, _headers = crypto_spot_symbols_with_http_info_impl(user_id, user_secret, account_id, extra)
|
593
|
-
data
|
594
|
-
end
|
595
|
-
|
596
|
-
# Search crypto spot symbols
|
597
|
-
#
|
598
|
-
# Searches cryptocurrency spot symbols accessible to the specified account.
|
599
|
-
#
|
600
|
-
# @param user_id [String]
|
601
|
-
# @param user_secret [String]
|
602
|
-
# @param account_id [String]
|
603
|
-
# @param base [String]
|
604
|
-
# @param quote [String]
|
605
|
-
# @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
|
606
|
-
def crypto_spot_symbols_with_http_info(user_id:, user_secret:, account_id:, base: SENTINEL, quote: SENTINEL, extra: {})
|
607
|
-
extra[:base] = base if base != SENTINEL
|
608
|
-
extra[:quote] = quote if quote != SENTINEL
|
609
|
-
crypto_spot_symbols_with_http_info_impl(user_id, user_secret, account_id, extra)
|
610
|
-
end
|
611
|
-
|
612
|
-
# Search crypto spot symbols
|
613
|
-
# Searches cryptocurrency spot symbols accessible to the specified account.
|
614
|
-
# @param user_id [String]
|
615
|
-
# @param user_secret [String]
|
616
|
-
# @param account_id [String]
|
617
|
-
# @param [Hash] opts the optional parameters
|
618
|
-
# @option opts [String] :base
|
619
|
-
# @option opts [String] :quote
|
620
|
-
# @return [TradingCryptoSpotSymbols200Response]
|
621
|
-
private def crypto_spot_symbols_impl(user_id, user_secret, account_id, opts = {})
|
622
|
-
data, _status_code, _headers = crypto_spot_symbols_with_http_info(user_id, user_secret, account_id, opts)
|
623
|
-
data
|
624
|
-
end
|
625
|
-
|
626
|
-
# Search crypto spot symbols
|
627
|
-
# Searches cryptocurrency spot symbols accessible to the specified account.
|
628
|
-
# @param user_id [String]
|
629
|
-
# @param user_secret [String]
|
630
|
-
# @param account_id [String]
|
631
|
-
# @param [Hash] opts the optional parameters
|
632
|
-
# @option opts [String] :base
|
633
|
-
# @option opts [String] :quote
|
634
|
-
# @return [Array<(TradingCryptoSpotSymbols200Response, Integer, Hash)>] TradingCryptoSpotSymbols200Response data, response status code and response headers
|
635
|
-
private def crypto_spot_symbols_with_http_info_impl(user_id, user_secret, account_id, opts = {})
|
636
|
-
if @api_client.config.debugging
|
637
|
-
@api_client.config.logger.debug 'Calling API: CryptoSpotTradingApi.crypto_spot_symbols ...'
|
638
|
-
end
|
639
|
-
# verify the required parameter 'user_id' is set
|
640
|
-
if @api_client.config.client_side_validation && user_id.nil?
|
641
|
-
fail ArgumentError, "Missing the required parameter 'user_id' when calling CryptoSpotTradingApi.crypto_spot_symbols"
|
642
|
-
end
|
643
|
-
# verify the required parameter 'user_secret' is set
|
644
|
-
if @api_client.config.client_side_validation && user_secret.nil?
|
645
|
-
fail ArgumentError, "Missing the required parameter 'user_secret' when calling CryptoSpotTradingApi.crypto_spot_symbols"
|
646
|
-
end
|
647
|
-
# verify the required parameter 'account_id' is set
|
648
|
-
if @api_client.config.client_side_validation && account_id.nil?
|
649
|
-
fail ArgumentError, "Missing the required parameter 'account_id' when calling CryptoSpotTradingApi.crypto_spot_symbols"
|
650
|
-
end
|
651
|
-
# resource path
|
652
|
-
local_var_path = '/accounts/{accountId}/trading/crypto/spot/symbols'.sub('{' + 'accountId' + '}', CGI.escape(account_id.to_s))
|
653
|
-
|
654
|
-
# query parameters
|
655
|
-
query_params = opts[:query_params] || {}
|
656
|
-
query_params[:'userId'] = user_id
|
657
|
-
query_params[:'userSecret'] = user_secret
|
658
|
-
query_params[:'base'] = opts[:'base'] if !opts[:'base'].nil?
|
659
|
-
query_params[:'quote'] = opts[:'quote'] if !opts[:'quote'].nil?
|
660
|
-
|
661
|
-
# header parameters
|
662
|
-
header_params = opts[:header_params] || {}
|
663
|
-
# HTTP header 'Accept' (if needed)
|
664
|
-
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
665
|
-
|
666
|
-
# form parameters
|
667
|
-
form_params = opts[:form_params] || {}
|
668
|
-
|
669
|
-
# http body (model)
|
670
|
-
post_body = opts[:debug_body]
|
671
|
-
|
672
|
-
# return_type
|
673
|
-
return_type = opts[:debug_return_type] || 'TradingCryptoSpotSymbols200Response'
|
674
|
-
|
675
|
-
# auth_names
|
676
|
-
auth_names = opts[:debug_auth_names] || ['PartnerClientId', 'PartnerSignature', 'PartnerTimestamp']
|
677
|
-
|
678
|
-
new_options = opts.merge(
|
679
|
-
:operation => :"CryptoSpotTradingApi.crypto_spot_symbols",
|
680
|
-
:header_params => header_params,
|
681
|
-
:query_params => query_params,
|
682
|
-
:form_params => form_params,
|
683
|
-
:body => post_body,
|
684
|
-
:auth_names => auth_names,
|
685
|
-
:return_type => return_type
|
686
|
-
)
|
687
|
-
|
688
|
-
data, status_code, headers, response = @api_client.call_api(:GET, local_var_path, new_options)
|
689
|
-
if @api_client.config.debugging
|
690
|
-
@api_client.config.logger.debug "API called: CryptoSpotTradingApi#crypto_spot_symbols\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
691
|
-
end
|
692
|
-
return data, status_code, headers, response
|
693
|
-
end
|
694
|
-
end
|
695
|
-
|
696
|
-
# top-level client access to avoid having the user to insantiate their own API instances
|
697
|
-
CryptoSpotTrading = CryptoSpotTradingApi::new
|
698
|
-
end
|