snaptrade 2.0.82 → 2.0.84

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 (42) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +5 -5
  3. data/README.md +375 -23
  4. data/lib/snaptrade/api/crypto_spot_trading_api.rb +698 -0
  5. data/lib/snaptrade/api/trading_api.rb +158 -16
  6. data/lib/snaptrade/models/account_order_record.rb +14 -4
  7. data/lib/snaptrade/models/account_order_record_child_brokerage_order_ids.rb +234 -0
  8. data/lib/snaptrade/models/brokerage_authorization_type_read_only.rb +1 -1
  9. data/lib/snaptrade/models/{order_class.rb → brokerage_authorization_type_read_only_type.rb} +6 -6
  10. data/lib/snaptrade/models/child_brokerage_order_ids.rb +227 -0
  11. data/lib/snaptrade/models/{manual_trade_form_with_options_take_profit.rb → crypto_spot_order_preview.rb} +11 -17
  12. data/lib/snaptrade/models/crypto_spot_order_preview_estimated_fee.rb +237 -0
  13. data/lib/snaptrade/models/crypto_spot_order_request_body_time_in_force.rb +39 -0
  14. data/lib/snaptrade/models/crypto_spot_quote.rb +257 -0
  15. data/lib/snaptrade/models/cryptocurrency_pair.rb +238 -0
  16. data/lib/snaptrade/models/manual_trade_form_bracket.rb +343 -0
  17. data/lib/snaptrade/models/manual_trade_form_with_options.rb +6 -37
  18. data/lib/snaptrade/models/{manual_trade_form_with_options_stop_loss.rb → trading_crypto_spot_cancel_order_request.rb} +16 -27
  19. data/lib/snaptrade/models/trading_crypto_spot_place_order_request.rb +321 -0
  20. data/lib/snaptrade/models/trading_crypto_spot_symbols200_response.rb +224 -0
  21. data/lib/snaptrade/models/type.rb +7 -3
  22. data/lib/snaptrade/version.rb +1 -1
  23. data/lib/snaptrade.rb +15 -3
  24. data/spec/api/crypto_spot_trading_api_spec.rb +107 -0
  25. data/spec/api/trading_api_spec.rb +14 -0
  26. data/spec/models/account_order_record_child_brokerage_order_ids_spec.rb +35 -0
  27. data/spec/models/account_order_record_spec.rb +6 -0
  28. data/spec/models/brokerage_authorization_type_read_only_type_spec.rb +23 -0
  29. data/spec/models/child_brokerage_order_ids_spec.rb +35 -0
  30. data/spec/models/{manual_trade_form_with_options_stop_loss_spec.rb → crypto_spot_order_preview_estimated_fee_spec.rb} +8 -8
  31. data/spec/models/crypto_spot_order_preview_spec.rb +29 -0
  32. data/spec/models/crypto_spot_order_request_body_time_in_force_spec.rb +23 -0
  33. data/spec/models/crypto_spot_quote_spec.rb +47 -0
  34. data/spec/models/cryptocurrency_pair_spec.rb +35 -0
  35. data/spec/models/manual_trade_form_bracket_spec.rb +83 -0
  36. data/spec/models/manual_trade_form_with_options_spec.rb +0 -18
  37. data/spec/models/trading_crypto_spot_cancel_order_request_spec.rb +29 -0
  38. data/spec/models/trading_crypto_spot_place_order_request_spec.rb +77 -0
  39. data/spec/models/trading_crypto_spot_symbols200_response_spec.rb +29 -0
  40. metadata +41 -11
  41. data/spec/models/manual_trade_form_with_options_take_profit_spec.rb +0 -29
  42. data/spec/models/order_class_spec.rb +0 -23
@@ -0,0 +1,343 @@
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
+ # Inputs for placing an order with the brokerage.
15
+ class ManualTradeFormBracket
16
+ # Unique identifier for the connected brokerage account. This is the UUID used to reference the account in SnapTrade.
17
+ attr_accessor :account_id
18
+
19
+ # The action describes the intent or side of a trade. This is either `BUY` or `SELL` for Equity symbols or `BUY_TO_OPEN`, `BUY_TO_CLOSE`, `SELL_TO_OPEN` or `SELL_TO_CLOSE` for Options.
20
+ attr_accessor :action
21
+
22
+ # The security's trading ticker symbol.
23
+ attr_accessor :symbol
24
+
25
+ # The type of order to place. - For `Limit` and `StopLimit` orders, the `price` field is required. - For `Stop` and `StopLimit` orders, the `stop` field is required.
26
+ attr_accessor :order_type
27
+
28
+ # The Time in Force type for the order. This field indicates how long the order will remain active before it is executed or expires. Here are the supported values: - `Day` - Day. The order is valid only for the trading day on which it is placed. - `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.
29
+ attr_accessor :time_in_force
30
+
31
+ # The limit price for `Limit` and `StopLimit` orders.
32
+ attr_accessor :price
33
+
34
+ # The price at which a stop order is triggered for `Stop` and `StopLimit` orders.
35
+ attr_accessor :stop
36
+
37
+ # Number of shares for the order. This can be a decimal for fractional orders. Must be `null` if `notional_value` is provided.
38
+ attr_accessor :units
39
+
40
+ attr_accessor :stop_loss
41
+
42
+ attr_accessor :take_profit
43
+
44
+ # Attribute mapping from ruby-style variable name to JSON key.
45
+ def self.attribute_map
46
+ {
47
+ :'account_id' => :'account_id',
48
+ :'action' => :'action',
49
+ :'symbol' => :'symbol',
50
+ :'order_type' => :'order_type',
51
+ :'time_in_force' => :'time_in_force',
52
+ :'price' => :'price',
53
+ :'stop' => :'stop',
54
+ :'units' => :'units',
55
+ :'stop_loss' => :'stop_loss',
56
+ :'take_profit' => :'take_profit'
57
+ }
58
+ end
59
+
60
+ # Returns all the JSON keys this model knows about
61
+ def self.acceptable_attributes
62
+ attribute_map.values
63
+ end
64
+
65
+ # Attribute type mapping.
66
+ def self.openapi_types
67
+ {
68
+ :'account_id' => :'String',
69
+ :'action' => :'ActionStrictWithOptions',
70
+ :'symbol' => :'String',
71
+ :'order_type' => :'OrderTypeStrict',
72
+ :'time_in_force' => :'TimeInForceStrict',
73
+ :'price' => :'Float',
74
+ :'stop' => :'Float',
75
+ :'units' => :'Float',
76
+ :'stop_loss' => :'StopLoss',
77
+ :'take_profit' => :'TakeProfit'
78
+ }
79
+ end
80
+
81
+ # List of attributes with nullable: true
82
+ def self.openapi_nullable
83
+ Set.new([
84
+ :'price',
85
+ :'stop',
86
+ ])
87
+ end
88
+
89
+ # Initializes the object
90
+ # @param [Hash] attributes Model attributes in the form of hash
91
+ def initialize(attributes = {})
92
+ if (!attributes.is_a?(Hash))
93
+ fail ArgumentError, "The input argument (attributes) must be a hash in `SnapTrade::ManualTradeFormBracket` initialize method"
94
+ end
95
+
96
+ # check to see if the attribute exists and convert string to symbol for hash key
97
+ attributes = attributes.each_with_object({}) { |(k, v), h|
98
+ if (!self.class.attribute_map.key?(k.to_sym))
99
+ fail ArgumentError, "`#{k}` is not a valid attribute in `SnapTrade::ManualTradeFormBracket`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
100
+ end
101
+ h[k.to_sym] = v
102
+ }
103
+
104
+ if attributes.key?(:'account_id')
105
+ self.account_id = attributes[:'account_id']
106
+ end
107
+
108
+ if attributes.key?(:'action')
109
+ self.action = attributes[:'action']
110
+ end
111
+
112
+ if attributes.key?(:'symbol')
113
+ self.symbol = attributes[:'symbol']
114
+ end
115
+
116
+ if attributes.key?(:'order_type')
117
+ self.order_type = attributes[:'order_type']
118
+ end
119
+
120
+ if attributes.key?(:'time_in_force')
121
+ self.time_in_force = attributes[:'time_in_force']
122
+ end
123
+
124
+ if attributes.key?(:'price')
125
+ self.price = attributes[:'price']
126
+ end
127
+
128
+ if attributes.key?(:'stop')
129
+ self.stop = attributes[:'stop']
130
+ end
131
+
132
+ if attributes.key?(:'units')
133
+ self.units = attributes[:'units']
134
+ end
135
+
136
+ if attributes.key?(:'stop_loss')
137
+ self.stop_loss = attributes[:'stop_loss']
138
+ end
139
+
140
+ if attributes.key?(:'take_profit')
141
+ self.take_profit = attributes[:'take_profit']
142
+ end
143
+ end
144
+
145
+ # Show invalid properties with the reasons. Usually used together with valid?
146
+ # @return Array for valid properties with the reasons
147
+ def list_invalid_properties
148
+ invalid_properties = Array.new
149
+ if @account_id.nil?
150
+ invalid_properties.push('invalid value for "account_id", account_id cannot be nil.')
151
+ end
152
+
153
+ if @action.nil?
154
+ invalid_properties.push('invalid value for "action", action cannot be nil.')
155
+ end
156
+
157
+ if @symbol.nil?
158
+ invalid_properties.push('invalid value for "symbol", symbol cannot be nil.')
159
+ end
160
+
161
+ if @order_type.nil?
162
+ invalid_properties.push('invalid value for "order_type", order_type cannot be nil.')
163
+ end
164
+
165
+ if @time_in_force.nil?
166
+ invalid_properties.push('invalid value for "time_in_force", time_in_force cannot be nil.')
167
+ end
168
+
169
+ if @stop_loss.nil?
170
+ invalid_properties.push('invalid value for "stop_loss", stop_loss cannot be nil.')
171
+ end
172
+
173
+ if @take_profit.nil?
174
+ invalid_properties.push('invalid value for "take_profit", take_profit cannot be nil.')
175
+ end
176
+
177
+ invalid_properties
178
+ end
179
+
180
+ # Check to see if the all the properties in the model are valid
181
+ # @return true if the model is valid
182
+ def valid?
183
+ return false if @account_id.nil?
184
+ return false if @action.nil?
185
+ return false if @symbol.nil?
186
+ return false if @order_type.nil?
187
+ return false if @time_in_force.nil?
188
+ return false if @stop_loss.nil?
189
+ return false if @take_profit.nil?
190
+ true
191
+ end
192
+
193
+ # Checks equality by comparing each attribute.
194
+ # @param [Object] Object to be compared
195
+ def ==(o)
196
+ return true if self.equal?(o)
197
+ self.class == o.class &&
198
+ account_id == o.account_id &&
199
+ action == o.action &&
200
+ symbol == o.symbol &&
201
+ order_type == o.order_type &&
202
+ time_in_force == o.time_in_force &&
203
+ price == o.price &&
204
+ stop == o.stop &&
205
+ units == o.units &&
206
+ stop_loss == o.stop_loss &&
207
+ take_profit == o.take_profit
208
+ end
209
+
210
+ # @see the `==` method
211
+ # @param [Object] Object to be compared
212
+ def eql?(o)
213
+ self == o
214
+ end
215
+
216
+ # Calculates hash code according to all attributes.
217
+ # @return [Integer] Hash code
218
+ def hash
219
+ [account_id, action, symbol, order_type, time_in_force, price, stop, units, stop_loss, take_profit].hash
220
+ end
221
+
222
+ # Builds the object from hash
223
+ # @param [Hash] attributes Model attributes in the form of hash
224
+ # @return [Object] Returns the model itself
225
+ def self.build_from_hash(attributes)
226
+ new.build_from_hash(attributes)
227
+ end
228
+
229
+ # Builds the object from hash
230
+ # @param [Hash] attributes Model attributes in the form of hash
231
+ # @return [Object] Returns the model itself
232
+ def build_from_hash(attributes)
233
+ return nil unless attributes.is_a?(Hash)
234
+ attributes = attributes.transform_keys(&:to_sym)
235
+ self.class.openapi_types.each_pair do |key, type|
236
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
237
+ self.send("#{key}=", nil)
238
+ elsif type =~ /\AArray<(.*)>/i
239
+ # check to ensure the input is an array given that the attribute
240
+ # is documented as an array but the input is not
241
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
242
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
243
+ end
244
+ elsif !attributes[self.class.attribute_map[key]].nil?
245
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
246
+ end
247
+ end
248
+
249
+ self
250
+ end
251
+
252
+ # Deserializes the data based on type
253
+ # @param string type Data type
254
+ # @param string value Value to be deserialized
255
+ # @return [Object] Deserialized data
256
+ def _deserialize(type, value)
257
+ case type.to_sym
258
+ when :Time
259
+ Time.parse(value)
260
+ when :Date
261
+ Date.parse(value)
262
+ when :String
263
+ value.to_s
264
+ when :Integer
265
+ value.to_i
266
+ when :Float
267
+ value.to_f
268
+ when :Boolean
269
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
270
+ true
271
+ else
272
+ false
273
+ end
274
+ when :Object
275
+ # generic object (usually a Hash), return directly
276
+ value
277
+ when /\AArray<(?<inner_type>.+)>\z/
278
+ inner_type = Regexp.last_match[:inner_type]
279
+ value.map { |v| _deserialize(inner_type, v) }
280
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
281
+ k_type = Regexp.last_match[:k_type]
282
+ v_type = Regexp.last_match[:v_type]
283
+ {}.tap do |hash|
284
+ value.each do |k, v|
285
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
286
+ end
287
+ end
288
+ else # model
289
+ # models (e.g. Pet) or oneOf
290
+ klass = SnapTrade.const_get(type)
291
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
292
+ end
293
+ end
294
+
295
+ # Returns the string representation of the object
296
+ # @return [String] String presentation of the object
297
+ def to_s
298
+ to_hash.to_s
299
+ end
300
+
301
+ # to_body is an alias to to_hash (backward compatibility)
302
+ # @return [Hash] Returns the object in the form of hash
303
+ def to_body
304
+ to_hash
305
+ end
306
+
307
+ # Returns the object in the form of hash
308
+ # @return [Hash] Returns the object in the form of hash
309
+ def to_hash
310
+ hash = {}
311
+ self.class.attribute_map.each_pair do |attr, param|
312
+ value = self.send(attr)
313
+ if value.nil?
314
+ is_nullable = self.class.openapi_nullable.include?(attr)
315
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
316
+ end
317
+
318
+ hash[param] = _to_hash(value)
319
+ end
320
+ hash
321
+ end
322
+
323
+ # Outputs non-array value in the form of hash
324
+ # For object, use to_hash. Otherwise, just return the value
325
+ # @param [Object] value Any valid value
326
+ # @return [Hash] Returns the value in the form of hash
327
+ def _to_hash(value)
328
+ if value.is_a?(Array)
329
+ value.compact.map { |v| _to_hash(v) }
330
+ elsif value.is_a?(Hash)
331
+ {}.tap do |hash|
332
+ value.each { |k, v| hash[k] = _to_hash(v) }
333
+ end
334
+ elsif value.respond_to? :to_hash
335
+ value.to_hash
336
+ else
337
+ value
338
+ end
339
+ end
340
+
341
+ end
342
+
343
+ end
@@ -22,7 +22,7 @@ module SnapTrade
22
22
  # The universal symbol ID of the security to trade. Must be 'null' if `symbol` is provided, otherwise must be provided.
23
23
  attr_accessor :universal_symbol_id
24
24
 
25
- # The security's trading ticker symbol. This currently only support Options symbols in the 21 character OCC format. For example \"AAPL 131124C00240000\" represents a call option on AAPL expiring on 2024-11-13 with a strike price of $240. For more information on the OCC format, see [here](https://en.wikipedia.org/wiki/Option_symbol#OCC_format). If 'symbol' is provided, then 'universal_symbol_id' must be 'null'.
25
+ # The security's trading ticker symbol. This currently supports stock symbols and Options symbols in the 21 character OCC format. For example \"AAPL 131124C00240000\" represents a call option on AAPL expiring on 2024-11-13 with a strike price of $240. For more information on the OCC format, see [here](https://en.wikipedia.org/wiki/Option_symbol#OCC_format). If 'symbol' is provided, then 'universal_symbol_id' must be 'null'.
26
26
  attr_accessor :symbol
27
27
 
28
28
  # The type of order to place. - For `Limit` and `StopLimit` orders, the `price` field is required. - For `Stop` and `StopLimit` orders, the `stop` field is required.
@@ -42,13 +42,6 @@ module SnapTrade
42
42
 
43
43
  attr_accessor :notional_value
44
44
 
45
- # The class of order intended to be placed. Defaults to SIMPLE for regular, one legged trades. Set to BRACKET if looking to place a bracket (One-triggers-a-one-cancels-the-other) order, then specify take profit and stop loss conditions. Bracket orders currently only supported on Alpaca, Tradier, and Tradestation, contact us for more details
46
- attr_accessor :order_class
47
-
48
- attr_accessor :stop_loss
49
-
50
- attr_accessor :take_profit
51
-
52
45
  # Attribute mapping from ruby-style variable name to JSON key.
53
46
  def self.attribute_map
54
47
  {
@@ -61,10 +54,7 @@ module SnapTrade
61
54
  :'price' => :'price',
62
55
  :'stop' => :'stop',
63
56
  :'units' => :'units',
64
- :'notional_value' => :'notional_value',
65
- :'order_class' => :'order_class',
66
- :'stop_loss' => :'stop_loss',
67
- :'take_profit' => :'take_profit'
57
+ :'notional_value' => :'notional_value'
68
58
  }
69
59
  end
70
60
 
@@ -85,10 +75,7 @@ module SnapTrade
85
75
  :'price' => :'Float',
86
76
  :'stop' => :'Float',
87
77
  :'units' => :'Float',
88
- :'notional_value' => :'ManualTradeFormNotionalValue',
89
- :'order_class' => :'OrderClass',
90
- :'stop_loss' => :'ManualTradeFormWithOptionsStopLoss',
91
- :'take_profit' => :'ManualTradeFormWithOptionsTakeProfit'
78
+ :'notional_value' => :'ManualTradeFormNotionalValue'
92
79
  }
93
80
  end
94
81
 
@@ -100,10 +87,7 @@ module SnapTrade
100
87
  :'price',
101
88
  :'stop',
102
89
  :'units',
103
- :'notional_value',
104
- :'order_class',
105
- :'stop_loss',
106
- :'take_profit'
90
+ :'notional_value'
107
91
  ])
108
92
  end
109
93
 
@@ -161,18 +145,6 @@ module SnapTrade
161
145
  if attributes.key?(:'notional_value')
162
146
  self.notional_value = attributes[:'notional_value']
163
147
  end
164
-
165
- if attributes.key?(:'order_class')
166
- self.order_class = attributes[:'order_class']
167
- end
168
-
169
- if attributes.key?(:'stop_loss')
170
- self.stop_loss = attributes[:'stop_loss']
171
- end
172
-
173
- if attributes.key?(:'take_profit')
174
- self.take_profit = attributes[:'take_profit']
175
- end
176
148
  end
177
149
 
178
150
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -222,10 +194,7 @@ module SnapTrade
222
194
  price == o.price &&
223
195
  stop == o.stop &&
224
196
  units == o.units &&
225
- notional_value == o.notional_value &&
226
- order_class == o.order_class &&
227
- stop_loss == o.stop_loss &&
228
- take_profit == o.take_profit
197
+ notional_value == o.notional_value
229
198
  end
230
199
 
231
200
  # @see the `==` method
@@ -237,7 +206,7 @@ module SnapTrade
237
206
  # Calculates hash code according to all attributes.
238
207
  # @return [Integer] Hash code
239
208
  def hash
240
- [account_id, action, universal_symbol_id, symbol, order_type, time_in_force, price, stop, units, notional_value, order_class, stop_loss, take_profit].hash
209
+ [account_id, action, universal_symbol_id, symbol, order_type, time_in_force, price, stop, units, notional_value].hash
241
210
  end
242
211
 
243
212
  # Builds the object from hash
@@ -11,16 +11,14 @@ require 'date'
11
11
  require 'time'
12
12
 
13
13
  module SnapTrade
14
- class ManualTradeFormWithOptionsStopLoss
15
- attr_accessor :stop_price
16
-
17
- attr_accessor :limit_price
14
+ class TradingCryptoSpotCancelOrderRequest
15
+ # Order ID returned by brokerage. This is the unique identifier for the order in the brokerage system.
16
+ attr_accessor :brokerage_order_id
18
17
 
19
18
  # Attribute mapping from ruby-style variable name to JSON key.
20
19
  def self.attribute_map
21
20
  {
22
- :'stop_price' => :'stop_price',
23
- :'limit_price' => :'limit_price'
21
+ :'brokerage_order_id' => :'brokerage_order_id'
24
22
  }
25
23
  end
26
24
 
@@ -32,46 +30,33 @@ module SnapTrade
32
30
  # Attribute type mapping.
33
31
  def self.openapi_types
34
32
  {
35
- :'stop_price' => :'String',
36
- :'limit_price' => :'String'
33
+ :'brokerage_order_id' => :'String'
37
34
  }
38
35
  end
39
36
 
40
37
  # List of attributes with nullable: true
41
38
  def self.openapi_nullable
42
39
  Set.new([
43
- :'limit_price'
44
40
  ])
45
41
  end
46
42
 
47
- # List of class defined in allOf (OpenAPI v3)
48
- def self.openapi_all_of
49
- [
50
- :'StopLoss'
51
- ]
52
- end
53
-
54
43
  # Initializes the object
55
44
  # @param [Hash] attributes Model attributes in the form of hash
56
45
  def initialize(attributes = {})
57
46
  if (!attributes.is_a?(Hash))
58
- fail ArgumentError, "The input argument (attributes) must be a hash in `SnapTrade::ManualTradeFormWithOptionsStopLoss` initialize method"
47
+ fail ArgumentError, "The input argument (attributes) must be a hash in `SnapTrade::TradingCryptoSpotCancelOrderRequest` initialize method"
59
48
  end
60
49
 
61
50
  # check to see if the attribute exists and convert string to symbol for hash key
62
51
  attributes = attributes.each_with_object({}) { |(k, v), h|
63
52
  if (!self.class.attribute_map.key?(k.to_sym))
64
- fail ArgumentError, "`#{k}` is not a valid attribute in `SnapTrade::ManualTradeFormWithOptionsStopLoss`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
53
+ fail ArgumentError, "`#{k}` is not a valid attribute in `SnapTrade::TradingCryptoSpotCancelOrderRequest`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
65
54
  end
66
55
  h[k.to_sym] = v
67
56
  }
68
57
 
69
- if attributes.key?(:'stop_price')
70
- self.stop_price = attributes[:'stop_price']
71
- end
72
-
73
- if attributes.key?(:'limit_price')
74
- self.limit_price = attributes[:'limit_price']
58
+ if attributes.key?(:'brokerage_order_id')
59
+ self.brokerage_order_id = attributes[:'brokerage_order_id']
75
60
  end
76
61
  end
77
62
 
@@ -79,12 +64,17 @@ module SnapTrade
79
64
  # @return Array for valid properties with the reasons
80
65
  def list_invalid_properties
81
66
  invalid_properties = Array.new
67
+ if @brokerage_order_id.nil?
68
+ invalid_properties.push('invalid value for "brokerage_order_id", brokerage_order_id cannot be nil.')
69
+ end
70
+
82
71
  invalid_properties
83
72
  end
84
73
 
85
74
  # Check to see if the all the properties in the model are valid
86
75
  # @return true if the model is valid
87
76
  def valid?
77
+ return false if @brokerage_order_id.nil?
88
78
  true
89
79
  end
90
80
 
@@ -93,8 +83,7 @@ module SnapTrade
93
83
  def ==(o)
94
84
  return true if self.equal?(o)
95
85
  self.class == o.class &&
96
- stop_price == o.stop_price &&
97
- limit_price == o.limit_price
86
+ brokerage_order_id == o.brokerage_order_id
98
87
  end
99
88
 
100
89
  # @see the `==` method
@@ -106,7 +95,7 @@ module SnapTrade
106
95
  # Calculates hash code according to all attributes.
107
96
  # @return [Integer] Hash code
108
97
  def hash
109
- [stop_price, limit_price].hash
98
+ [brokerage_order_id].hash
110
99
  end
111
100
 
112
101
  # Builds the object from hash