snaptrade 2.0.83 → 2.0.85

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.
Files changed (30) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +8 -6
  3. data/README.md +285 -2
  4. data/lib/snaptrade/api/crypto_spot_trading_api.rb +698 -0
  5. data/lib/snaptrade/models/brokerage_authorization_type_read_only.rb +1 -1
  6. data/lib/snaptrade/models/brokerage_authorization_type_read_only_type.rb +37 -0
  7. data/lib/snaptrade/models/crypto_spot_order_preview.rb +217 -0
  8. data/lib/snaptrade/models/crypto_spot_order_preview_estimated_fee.rb +237 -0
  9. data/lib/snaptrade/models/crypto_spot_order_request_body_time_in_force.rb +39 -0
  10. data/lib/snaptrade/models/crypto_spot_quote.rb +257 -0
  11. data/lib/snaptrade/models/cryptocurrency_pair.rb +238 -0
  12. data/lib/snaptrade/models/order_updated_response.rb +231 -0
  13. data/lib/snaptrade/models/trading_crypto_spot_cancel_order_request.rb +222 -0
  14. data/lib/snaptrade/models/trading_crypto_spot_place_order_request.rb +321 -0
  15. data/lib/snaptrade/models/trading_crypto_spot_symbols200_response.rb +224 -0
  16. data/lib/snaptrade/models/type.rb +7 -3
  17. data/lib/snaptrade/version.rb +1 -1
  18. data/lib/snaptrade.rb +13 -0
  19. data/spec/api/crypto_spot_trading_api_spec.rb +107 -0
  20. data/spec/models/brokerage_authorization_type_read_only_type_spec.rb +23 -0
  21. data/spec/models/crypto_spot_order_preview_estimated_fee_spec.rb +35 -0
  22. data/spec/models/crypto_spot_order_preview_spec.rb +29 -0
  23. data/spec/models/crypto_spot_order_request_body_time_in_force_spec.rb +23 -0
  24. data/spec/models/crypto_spot_quote_spec.rb +47 -0
  25. data/spec/models/cryptocurrency_pair_spec.rb +35 -0
  26. data/spec/models/order_updated_response_spec.rb +35 -0
  27. data/spec/models/trading_crypto_spot_cancel_order_request_spec.rb +29 -0
  28. data/spec/models/trading_crypto_spot_place_order_request_spec.rb +77 -0
  29. data/spec/models/trading_crypto_spot_symbols200_response_spec.rb +29 -0
  30. metadata +35 -2
@@ -0,0 +1,321 @@
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 'date'
11
+ require 'time'
12
+
13
+ module SnapTrade
14
+ class TradingCryptoSpotPlaceOrderRequest
15
+ attr_accessor :symbol
16
+
17
+ # The action describes the intent or side of a trade. This is either `BUY` or `SELL`.
18
+ attr_accessor :side
19
+
20
+ # The type of order to place.
21
+ attr_accessor :type
22
+
23
+ # 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.
24
+ attr_accessor :time_in_force
25
+
26
+ # The amount of the base currency to buy or sell.
27
+ attr_accessor :amount
28
+
29
+ # The limit price. Required if the order type is LIMIT, STOP_LOSS_LIMIT or TAKE_PROFIT_LIMIT.
30
+ attr_accessor :limit_price
31
+
32
+ # The stop price. Required if the order type is STOP_LOSS_MARKET, STOP_LOSS_LIMIT, TAKE_PROFIT_MARKET or TAKE_PROFIT_LIMIT.
33
+ attr_accessor :stop_price
34
+
35
+ # Valid and required only for order type LIMIT. If true orders that would be filled immediately are rejected to avoid incurring TAKER fees.
36
+ attr_accessor :post_only
37
+
38
+ # The expiration date of the order. Required if the time_in_force is GTD.
39
+ attr_accessor :expiration_date
40
+
41
+ # Attribute mapping from ruby-style variable name to JSON key.
42
+ def self.attribute_map
43
+ {
44
+ :'symbol' => :'symbol',
45
+ :'side' => :'side',
46
+ :'type' => :'type',
47
+ :'time_in_force' => :'time_in_force',
48
+ :'amount' => :'amount',
49
+ :'limit_price' => :'limit_price',
50
+ :'stop_price' => :'stop_price',
51
+ :'post_only' => :'post_only',
52
+ :'expiration_date' => :'expiration_date'
53
+ }
54
+ end
55
+
56
+ # Returns all the JSON keys this model knows about
57
+ def self.acceptable_attributes
58
+ attribute_map.values
59
+ end
60
+
61
+ # Attribute type mapping.
62
+ def self.openapi_types
63
+ {
64
+ :'symbol' => :'CryptocurrencyPair',
65
+ :'side' => :'ActionStrict',
66
+ :'type' => :'Type',
67
+ :'time_in_force' => :'CryptoSpotOrderRequestBodyTimeInForce',
68
+ :'amount' => :'Float',
69
+ :'limit_price' => :'Float',
70
+ :'stop_price' => :'Float',
71
+ :'post_only' => :'Boolean',
72
+ :'expiration_date' => :'Time'
73
+ }
74
+ end
75
+
76
+ # List of attributes with nullable: true
77
+ def self.openapi_nullable
78
+ Set.new([
79
+ ])
80
+ end
81
+
82
+ # Initializes the object
83
+ # @param [Hash] attributes Model attributes in the form of hash
84
+ def initialize(attributes = {})
85
+ if (!attributes.is_a?(Hash))
86
+ fail ArgumentError, "The input argument (attributes) must be a hash in `SnapTrade::TradingCryptoSpotPlaceOrderRequest` initialize method"
87
+ end
88
+
89
+ # check to see if the attribute exists and convert string to symbol for hash key
90
+ attributes = attributes.each_with_object({}) { |(k, v), h|
91
+ if (!self.class.attribute_map.key?(k.to_sym))
92
+ fail ArgumentError, "`#{k}` is not a valid attribute in `SnapTrade::TradingCryptoSpotPlaceOrderRequest`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
93
+ end
94
+ h[k.to_sym] = v
95
+ }
96
+
97
+ if attributes.key?(:'symbol')
98
+ self.symbol = attributes[:'symbol']
99
+ end
100
+
101
+ if attributes.key?(:'side')
102
+ self.side = attributes[:'side']
103
+ end
104
+
105
+ if attributes.key?(:'type')
106
+ self.type = attributes[:'type']
107
+ end
108
+
109
+ if attributes.key?(:'time_in_force')
110
+ self.time_in_force = attributes[:'time_in_force']
111
+ end
112
+
113
+ if attributes.key?(:'amount')
114
+ self.amount = attributes[:'amount']
115
+ end
116
+
117
+ if attributes.key?(:'limit_price')
118
+ self.limit_price = attributes[:'limit_price']
119
+ end
120
+
121
+ if attributes.key?(:'stop_price')
122
+ self.stop_price = attributes[:'stop_price']
123
+ end
124
+
125
+ if attributes.key?(:'post_only')
126
+ self.post_only = attributes[:'post_only']
127
+ end
128
+
129
+ if attributes.key?(:'expiration_date')
130
+ self.expiration_date = attributes[:'expiration_date']
131
+ end
132
+ end
133
+
134
+ # Show invalid properties with the reasons. Usually used together with valid?
135
+ # @return Array for valid properties with the reasons
136
+ def list_invalid_properties
137
+ invalid_properties = Array.new
138
+ if @symbol.nil?
139
+ invalid_properties.push('invalid value for "symbol", symbol cannot be nil.')
140
+ end
141
+
142
+ if @side.nil?
143
+ invalid_properties.push('invalid value for "side", side cannot be nil.')
144
+ end
145
+
146
+ if @type.nil?
147
+ invalid_properties.push('invalid value for "type", type cannot be nil.')
148
+ end
149
+
150
+ if @time_in_force.nil?
151
+ invalid_properties.push('invalid value for "time_in_force", time_in_force cannot be nil.')
152
+ end
153
+
154
+ if @amount.nil?
155
+ invalid_properties.push('invalid value for "amount", amount cannot be nil.')
156
+ end
157
+
158
+ invalid_properties
159
+ end
160
+
161
+ # Check to see if the all the properties in the model are valid
162
+ # @return true if the model is valid
163
+ def valid?
164
+ return false if @symbol.nil?
165
+ return false if @side.nil?
166
+ return false if @type.nil?
167
+ return false if @time_in_force.nil?
168
+ return false if @amount.nil?
169
+ true
170
+ end
171
+
172
+ # Checks equality by comparing each attribute.
173
+ # @param [Object] Object to be compared
174
+ def ==(o)
175
+ return true if self.equal?(o)
176
+ self.class == o.class &&
177
+ symbol == o.symbol &&
178
+ side == o.side &&
179
+ type == o.type &&
180
+ time_in_force == o.time_in_force &&
181
+ amount == o.amount &&
182
+ limit_price == o.limit_price &&
183
+ stop_price == o.stop_price &&
184
+ post_only == o.post_only &&
185
+ expiration_date == o.expiration_date
186
+ end
187
+
188
+ # @see the `==` method
189
+ # @param [Object] Object to be compared
190
+ def eql?(o)
191
+ self == o
192
+ end
193
+
194
+ # Calculates hash code according to all attributes.
195
+ # @return [Integer] Hash code
196
+ def hash
197
+ [symbol, side, type, time_in_force, amount, limit_price, stop_price, post_only, expiration_date].hash
198
+ end
199
+
200
+ # Builds the object from hash
201
+ # @param [Hash] attributes Model attributes in the form of hash
202
+ # @return [Object] Returns the model itself
203
+ def self.build_from_hash(attributes)
204
+ new.build_from_hash(attributes)
205
+ end
206
+
207
+ # Builds the object from hash
208
+ # @param [Hash] attributes Model attributes in the form of hash
209
+ # @return [Object] Returns the model itself
210
+ def build_from_hash(attributes)
211
+ return nil unless attributes.is_a?(Hash)
212
+ attributes = attributes.transform_keys(&:to_sym)
213
+ self.class.openapi_types.each_pair do |key, type|
214
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
215
+ self.send("#{key}=", nil)
216
+ elsif type =~ /\AArray<(.*)>/i
217
+ # check to ensure the input is an array given that the attribute
218
+ # is documented as an array but the input is not
219
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
220
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
221
+ end
222
+ elsif !attributes[self.class.attribute_map[key]].nil?
223
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
224
+ end
225
+ end
226
+
227
+ self
228
+ end
229
+
230
+ # Deserializes the data based on type
231
+ # @param string type Data type
232
+ # @param string value Value to be deserialized
233
+ # @return [Object] Deserialized data
234
+ def _deserialize(type, value)
235
+ case type.to_sym
236
+ when :Time
237
+ Time.parse(value)
238
+ when :Date
239
+ Date.parse(value)
240
+ when :String
241
+ value.to_s
242
+ when :Integer
243
+ value.to_i
244
+ when :Float
245
+ value.to_f
246
+ when :Boolean
247
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
248
+ true
249
+ else
250
+ false
251
+ end
252
+ when :Object
253
+ # generic object (usually a Hash), return directly
254
+ value
255
+ when /\AArray<(?<inner_type>.+)>\z/
256
+ inner_type = Regexp.last_match[:inner_type]
257
+ value.map { |v| _deserialize(inner_type, v) }
258
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
259
+ k_type = Regexp.last_match[:k_type]
260
+ v_type = Regexp.last_match[:v_type]
261
+ {}.tap do |hash|
262
+ value.each do |k, v|
263
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
264
+ end
265
+ end
266
+ else # model
267
+ # models (e.g. Pet) or oneOf
268
+ klass = SnapTrade.const_get(type)
269
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
270
+ end
271
+ end
272
+
273
+ # Returns the string representation of the object
274
+ # @return [String] String presentation of the object
275
+ def to_s
276
+ to_hash.to_s
277
+ end
278
+
279
+ # to_body is an alias to to_hash (backward compatibility)
280
+ # @return [Hash] Returns the object in the form of hash
281
+ def to_body
282
+ to_hash
283
+ end
284
+
285
+ # Returns the object in the form of hash
286
+ # @return [Hash] Returns the object in the form of hash
287
+ def to_hash
288
+ hash = {}
289
+ self.class.attribute_map.each_pair do |attr, param|
290
+ value = self.send(attr)
291
+ if value.nil?
292
+ is_nullable = self.class.openapi_nullable.include?(attr)
293
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
294
+ end
295
+
296
+ hash[param] = _to_hash(value)
297
+ end
298
+ hash
299
+ end
300
+
301
+ # Outputs non-array value in the form of hash
302
+ # For object, use to_hash. Otherwise, just return the value
303
+ # @param [Object] value Any valid value
304
+ # @return [Hash] Returns the value in the form of hash
305
+ def _to_hash(value)
306
+ if value.is_a?(Array)
307
+ value.compact.map { |v| _to_hash(v) }
308
+ elsif value.is_a?(Hash)
309
+ {}.tap do |hash|
310
+ value.each { |k, v| hash[k] = _to_hash(v) }
311
+ end
312
+ elsif value.respond_to? :to_hash
313
+ value.to_hash
314
+ else
315
+ value
316
+ end
317
+ end
318
+
319
+ end
320
+
321
+ end
@@ -0,0 +1,224 @@
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 'date'
11
+ require 'time'
12
+
13
+ module SnapTrade
14
+ # The symbols
15
+ class TradingCryptoSpotSymbols200Response
16
+ attr_accessor :items
17
+
18
+ # Attribute mapping from ruby-style variable name to JSON key.
19
+ def self.attribute_map
20
+ {
21
+ :'items' => :'items'
22
+ }
23
+ end
24
+
25
+ # Returns all the JSON keys this model knows about
26
+ def self.acceptable_attributes
27
+ attribute_map.values
28
+ end
29
+
30
+ # Attribute type mapping.
31
+ def self.openapi_types
32
+ {
33
+ :'items' => :'Array<CryptocurrencyPair>'
34
+ }
35
+ end
36
+
37
+ # List of attributes with nullable: true
38
+ def self.openapi_nullable
39
+ Set.new([
40
+ ])
41
+ end
42
+
43
+ # Initializes the object
44
+ # @param [Hash] attributes Model attributes in the form of hash
45
+ def initialize(attributes = {})
46
+ if (!attributes.is_a?(Hash))
47
+ fail ArgumentError, "The input argument (attributes) must be a hash in `SnapTrade::TradingCryptoSpotSymbols200Response` initialize method"
48
+ end
49
+
50
+ # check to see if the attribute exists and convert string to symbol for hash key
51
+ attributes = attributes.each_with_object({}) { |(k, v), h|
52
+ if (!self.class.attribute_map.key?(k.to_sym))
53
+ fail ArgumentError, "`#{k}` is not a valid attribute in `SnapTrade::TradingCryptoSpotSymbols200Response`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
54
+ end
55
+ h[k.to_sym] = v
56
+ }
57
+
58
+ if attributes.key?(:'items')
59
+ if (value = attributes[:'items']).is_a?(Array)
60
+ self.items = value
61
+ end
62
+ end
63
+ end
64
+
65
+ # Show invalid properties with the reasons. Usually used together with valid?
66
+ # @return Array for valid properties with the reasons
67
+ def list_invalid_properties
68
+ invalid_properties = Array.new
69
+ if @items.nil?
70
+ invalid_properties.push('invalid value for "items", items cannot be nil.')
71
+ end
72
+
73
+ invalid_properties
74
+ end
75
+
76
+ # Check to see if the all the properties in the model are valid
77
+ # @return true if the model is valid
78
+ def valid?
79
+ return false if @items.nil?
80
+ true
81
+ end
82
+
83
+ # Checks equality by comparing each attribute.
84
+ # @param [Object] Object to be compared
85
+ def ==(o)
86
+ return true if self.equal?(o)
87
+ self.class == o.class &&
88
+ items == o.items
89
+ end
90
+
91
+ # @see the `==` method
92
+ # @param [Object] Object to be compared
93
+ def eql?(o)
94
+ self == o
95
+ end
96
+
97
+ # Calculates hash code according to all attributes.
98
+ # @return [Integer] Hash code
99
+ def hash
100
+ [items].hash
101
+ end
102
+
103
+ # Builds the object from hash
104
+ # @param [Hash] attributes Model attributes in the form of hash
105
+ # @return [Object] Returns the model itself
106
+ def self.build_from_hash(attributes)
107
+ new.build_from_hash(attributes)
108
+ end
109
+
110
+ # Builds the object from hash
111
+ # @param [Hash] attributes Model attributes in the form of hash
112
+ # @return [Object] Returns the model itself
113
+ def build_from_hash(attributes)
114
+ return nil unless attributes.is_a?(Hash)
115
+ attributes = attributes.transform_keys(&:to_sym)
116
+ self.class.openapi_types.each_pair do |key, type|
117
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
118
+ self.send("#{key}=", nil)
119
+ elsif type =~ /\AArray<(.*)>/i
120
+ # check to ensure the input is an array given that the attribute
121
+ # is documented as an array but the input is not
122
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
123
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
124
+ end
125
+ elsif !attributes[self.class.attribute_map[key]].nil?
126
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
127
+ end
128
+ end
129
+
130
+ self
131
+ end
132
+
133
+ # Deserializes the data based on type
134
+ # @param string type Data type
135
+ # @param string value Value to be deserialized
136
+ # @return [Object] Deserialized data
137
+ def _deserialize(type, value)
138
+ case type.to_sym
139
+ when :Time
140
+ Time.parse(value)
141
+ when :Date
142
+ Date.parse(value)
143
+ when :String
144
+ value.to_s
145
+ when :Integer
146
+ value.to_i
147
+ when :Float
148
+ value.to_f
149
+ when :Boolean
150
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
151
+ true
152
+ else
153
+ false
154
+ end
155
+ when :Object
156
+ # generic object (usually a Hash), return directly
157
+ value
158
+ when /\AArray<(?<inner_type>.+)>\z/
159
+ inner_type = Regexp.last_match[:inner_type]
160
+ value.map { |v| _deserialize(inner_type, v) }
161
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
162
+ k_type = Regexp.last_match[:k_type]
163
+ v_type = Regexp.last_match[:v_type]
164
+ {}.tap do |hash|
165
+ value.each do |k, v|
166
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
167
+ end
168
+ end
169
+ else # model
170
+ # models (e.g. Pet) or oneOf
171
+ klass = SnapTrade.const_get(type)
172
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
173
+ end
174
+ end
175
+
176
+ # Returns the string representation of the object
177
+ # @return [String] String presentation of the object
178
+ def to_s
179
+ to_hash.to_s
180
+ end
181
+
182
+ # to_body is an alias to to_hash (backward compatibility)
183
+ # @return [Hash] Returns the object in the form of hash
184
+ def to_body
185
+ to_hash
186
+ end
187
+
188
+ # Returns the object in the form of hash
189
+ # @return [Hash] Returns the object in the form of hash
190
+ def to_hash
191
+ hash = {}
192
+ self.class.attribute_map.each_pair do |attr, param|
193
+ value = self.send(attr)
194
+ if value.nil?
195
+ is_nullable = self.class.openapi_nullable.include?(attr)
196
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
197
+ end
198
+
199
+ hash[param] = _to_hash(value)
200
+ end
201
+ hash
202
+ end
203
+
204
+ # Outputs non-array value in the form of hash
205
+ # For object, use to_hash. Otherwise, just return the value
206
+ # @param [Object] value Any valid value
207
+ # @return [Hash] Returns the value in the form of hash
208
+ def _to_hash(value)
209
+ if value.is_a?(Array)
210
+ value.compact.map { |v| _to_hash(v) }
211
+ elsif value.is_a?(Hash)
212
+ {}.tap do |hash|
213
+ value.each { |k, v| hash[k] = _to_hash(v) }
214
+ end
215
+ elsif value.respond_to? :to_hash
216
+ value.to_hash
217
+ else
218
+ value
219
+ end
220
+ end
221
+
222
+ end
223
+
224
+ end
@@ -12,11 +12,15 @@ require 'time'
12
12
 
13
13
  module SnapTrade
14
14
  class Type
15
- READ = "read".freeze
16
- TRADE = "trade".freeze
15
+ MARKET = "MARKET".freeze
16
+ LIMIT = "LIMIT".freeze
17
+ STOP_LOSS_MARKET = "STOP_LOSS_MARKET".freeze
18
+ STOP_LOSS_LIMIT = "STOP_LOSS_LIMIT".freeze
19
+ TAKE_PROFIT_MARKET = "TAKE_PROFIT_MARKET".freeze
20
+ TAKE_PROFIT_LIMIT = "TAKE_PROFIT_LIMIT".freeze
17
21
 
18
22
  def self.all_vars
19
- @all_vars ||= [READ, TRADE].freeze
23
+ @all_vars ||= [MARKET, LIMIT, STOP_LOSS_MARKET, STOP_LOSS_LIMIT, TAKE_PROFIT_MARKET, TAKE_PROFIT_LIMIT].freeze
20
24
  end
21
25
 
22
26
  # Builds the enum from string
@@ -8,5 +8,5 @@ Contact: api@snaptrade.com
8
8
  =end
9
9
 
10
10
  module SnapTrade
11
- VERSION = '2.0.83'
11
+ VERSION = '2.0.85'
12
12
  end
data/lib/snaptrade.rb CHANGED
@@ -44,11 +44,17 @@ require 'snaptrade/models/brokerage_authorization_disabled_confirmation'
44
44
  require 'snaptrade/models/brokerage_authorization_refresh_confirmation'
45
45
  require 'snaptrade/models/brokerage_authorization_type_read_only'
46
46
  require 'snaptrade/models/brokerage_authorization_type_read_only_brokerage'
47
+ require 'snaptrade/models/brokerage_authorization_type_read_only_type'
47
48
  require 'snaptrade/models/brokerage_type'
48
49
  require 'snaptrade/models/child_brokerage_order_ids'
49
50
  require 'snaptrade/models/connection_portal_version'
50
51
  require 'snaptrade/models/connection_type'
51
52
  require 'snaptrade/models/connections_session_events200_response_inner'
53
+ require 'snaptrade/models/crypto_spot_order_preview'
54
+ require 'snaptrade/models/crypto_spot_order_preview_estimated_fee'
55
+ require 'snaptrade/models/crypto_spot_order_request_body_time_in_force'
56
+ require 'snaptrade/models/crypto_spot_quote'
57
+ require 'snaptrade/models/cryptocurrency_pair'
52
58
  require 'snaptrade/models/currency'
53
59
  require 'snaptrade/models/delete_user_response'
54
60
  require 'snaptrade/models/dividend_at_date'
@@ -96,6 +102,7 @@ require 'snaptrade/models/options_position'
96
102
  require 'snaptrade/models/options_position_currency'
97
103
  require 'snaptrade/models/options_symbol'
98
104
  require 'snaptrade/models/order_type_strict'
105
+ require 'snaptrade/models/order_updated_response'
99
106
  require 'snaptrade/models/paginated_universal_activity'
100
107
  require 'snaptrade/models/pagination_details'
101
108
  require 'snaptrade/models/partner_data'
@@ -131,6 +138,9 @@ require 'snaptrade/models/take_profit'
131
138
  require 'snaptrade/models/time_in_force_strict'
132
139
  require 'snaptrade/models/timeframe'
133
140
  require 'snaptrade/models/trading_cancel_user_account_order_request'
141
+ require 'snaptrade/models/trading_crypto_spot_cancel_order_request'
142
+ require 'snaptrade/models/trading_crypto_spot_place_order_request'
143
+ require 'snaptrade/models/trading_crypto_spot_symbols200_response'
134
144
  require 'snaptrade/models/transactions_status'
135
145
  require 'snaptrade/models/type'
136
146
  require 'snaptrade/models/us_exchange'
@@ -147,6 +157,7 @@ require 'snaptrade/api/account_information_api'
147
157
  require 'snaptrade/api/api_status_api'
148
158
  require 'snaptrade/api/authentication_api'
149
159
  require 'snaptrade/api/connections_api'
160
+ require 'snaptrade/api/crypto_spot_trading_api'
150
161
  require 'snaptrade/api/options_api'
151
162
  require 'snaptrade/api/reference_data_api'
152
163
  require 'snaptrade/api/trading_api'
@@ -220,6 +231,7 @@ module SnapTrade
220
231
  attr_reader :api_status
221
232
  attr_reader :authentication
222
233
  attr_reader :connections
234
+ attr_reader :crypto_spot_trading
223
235
  attr_reader :options
224
236
  attr_reader :reference_data
225
237
  attr_reader :trading
@@ -231,6 +243,7 @@ module SnapTrade
231
243
  @api_status = SnapTrade::APIStatusApi.new(@api_client)
232
244
  @authentication = SnapTrade::AuthenticationApi.new(@api_client)
233
245
  @connections = SnapTrade::ConnectionsApi.new(@api_client)
246
+ @crypto_spot_trading = SnapTrade::CryptoSpotTradingApi.new(@api_client)
234
247
  @options = SnapTrade::OptionsApi.new(@api_client)
235
248
  @reference_data = SnapTrade::ReferenceDataApi.new(@api_client)
236
249
  @trading = SnapTrade::TradingApi.new(@api_client)