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
@@ -408,6 +408,160 @@ module SnapTrade
408
408
  end
409
409
 
410
410
 
411
+ # Place a Bracket Order
412
+ #
413
+ # Places a bracket order (entry order + OCO of stop loss and take profit). Disabled by default please contact support for
414
+ # use. Only supported on certain brokerages
415
+ #
416
+ # @param account_id [String] Unique identifier for the connected brokerage account. This is the UUID used to reference the account in SnapTrade.
417
+ # @param action [ActionStrictWithOptions] 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.
418
+ # @param symbol [String] The security's trading ticker symbol.
419
+ # @param order_type [OrderTypeStrict] 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.
420
+ # @param time_in_force [TimeInForceStrict] 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.
421
+ # @param stop_loss [StopLoss]
422
+ # @param take_profit [TakeProfit]
423
+ # @param user_id [String]
424
+ # @param user_secret [String]
425
+ # @param price [Float] The limit price for `Limit` and `StopLimit` orders.
426
+ # @param stop [Float] The price at which a stop order is triggered for `Stop` and `StopLimit` orders.
427
+ # @param units [Float] Number of shares for the order. This can be a decimal for fractional orders. Must be `null` if `notional_value` is provided.
428
+ # @param body [ManualTradeFormBracket]
429
+ # @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
430
+ def place_bracket_order(account_id:, action:, symbol:, order_type:, time_in_force:, stop_loss:, take_profit:, user_id:, user_secret:, price: SENTINEL, stop: SENTINEL, units: SENTINEL, extra: {})
431
+ _body = {}
432
+ _body[:account_id] = account_id if account_id != SENTINEL
433
+ _body[:action] = action if action != SENTINEL
434
+ _body[:symbol] = symbol if symbol != SENTINEL
435
+ _body[:order_type] = order_type if order_type != SENTINEL
436
+ _body[:time_in_force] = time_in_force if time_in_force != SENTINEL
437
+ _body[:price] = price if price != SENTINEL
438
+ _body[:stop] = stop if stop != SENTINEL
439
+ _body[:units] = units if units != SENTINEL
440
+ _body[:stop_loss] = stop_loss if stop_loss != SENTINEL
441
+ _body[:take_profit] = take_profit if take_profit != SENTINEL
442
+ manual_trade_form_bracket = _body
443
+ data, _status_code, _headers = place_bracket_order_with_http_info_impl(user_id, user_secret, manual_trade_form_bracket, extra)
444
+ data
445
+ end
446
+
447
+ # Place a Bracket Order
448
+ #
449
+ # Places a bracket order (entry order + OCO of stop loss and take profit). Disabled by default please contact support for
450
+ # use. Only supported on certain brokerages
451
+ #
452
+ # @param account_id [String] Unique identifier for the connected brokerage account. This is the UUID used to reference the account in SnapTrade.
453
+ # @param action [ActionStrictWithOptions] 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.
454
+ # @param symbol [String] The security's trading ticker symbol.
455
+ # @param order_type [OrderTypeStrict] 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.
456
+ # @param time_in_force [TimeInForceStrict] 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.
457
+ # @param stop_loss [StopLoss]
458
+ # @param take_profit [TakeProfit]
459
+ # @param user_id [String]
460
+ # @param user_secret [String]
461
+ # @param price [Float] The limit price for `Limit` and `StopLimit` orders.
462
+ # @param stop [Float] The price at which a stop order is triggered for `Stop` and `StopLimit` orders.
463
+ # @param units [Float] Number of shares for the order. This can be a decimal for fractional orders. Must be `null` if `notional_value` is provided.
464
+ # @param body [ManualTradeFormBracket]
465
+ # @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
466
+ def place_bracket_order_with_http_info(account_id:, action:, symbol:, order_type:, time_in_force:, stop_loss:, take_profit:, user_id:, user_secret:, price: SENTINEL, stop: SENTINEL, units: SENTINEL, extra: {})
467
+ _body = {}
468
+ _body[:account_id] = account_id if account_id != SENTINEL
469
+ _body[:action] = action if action != SENTINEL
470
+ _body[:symbol] = symbol if symbol != SENTINEL
471
+ _body[:order_type] = order_type if order_type != SENTINEL
472
+ _body[:time_in_force] = time_in_force if time_in_force != SENTINEL
473
+ _body[:price] = price if price != SENTINEL
474
+ _body[:stop] = stop if stop != SENTINEL
475
+ _body[:units] = units if units != SENTINEL
476
+ _body[:stop_loss] = stop_loss if stop_loss != SENTINEL
477
+ _body[:take_profit] = take_profit if take_profit != SENTINEL
478
+ manual_trade_form_bracket = _body
479
+ place_bracket_order_with_http_info_impl(user_id, user_secret, manual_trade_form_bracket, extra)
480
+ end
481
+
482
+ # Place a Bracket Order
483
+ # Places a bracket order (entry order + OCO of stop loss and take profit). Disabled by default please contact support for use. Only supported on certain brokerages
484
+ # @param user_id [String]
485
+ # @param user_secret [String]
486
+ # @param manual_trade_form_bracket [ManualTradeFormBracket]
487
+ # @param [Hash] opts the optional parameters
488
+ # @return [AccountOrderRecord]
489
+ private def place_bracket_order_impl(user_id, user_secret, manual_trade_form_bracket, opts = {})
490
+ data, _status_code, _headers = place_bracket_order_with_http_info(user_id, user_secret, manual_trade_form_bracket, opts)
491
+ data
492
+ end
493
+
494
+ # Place a Bracket Order
495
+ # Places a bracket order (entry order + OCO of stop loss and take profit). Disabled by default please contact support for use. Only supported on certain brokerages
496
+ # @param user_id [String]
497
+ # @param user_secret [String]
498
+ # @param manual_trade_form_bracket [ManualTradeFormBracket]
499
+ # @param [Hash] opts the optional parameters
500
+ # @return [Array<(AccountOrderRecord, Integer, Hash)>] AccountOrderRecord data, response status code and response headers
501
+ private def place_bracket_order_with_http_info_impl(user_id, user_secret, manual_trade_form_bracket, opts = {})
502
+ if @api_client.config.debugging
503
+ @api_client.config.logger.debug 'Calling API: TradingApi.place_bracket_order ...'
504
+ end
505
+ # verify the required parameter 'user_id' is set
506
+ if @api_client.config.client_side_validation && user_id.nil?
507
+ fail ArgumentError, "Missing the required parameter 'user_id' when calling TradingApi.place_bracket_order"
508
+ end
509
+ # verify the required parameter 'user_secret' is set
510
+ if @api_client.config.client_side_validation && user_secret.nil?
511
+ fail ArgumentError, "Missing the required parameter 'user_secret' when calling TradingApi.place_bracket_order"
512
+ end
513
+ # verify the required parameter 'manual_trade_form_bracket' is set
514
+ if @api_client.config.client_side_validation && manual_trade_form_bracket.nil?
515
+ fail ArgumentError, "Missing the required parameter 'manual_trade_form_bracket' when calling TradingApi.place_bracket_order"
516
+ end
517
+ # resource path
518
+ local_var_path = '/trade/placeBracketOrder'
519
+
520
+ # query parameters
521
+ query_params = opts[:query_params] || {}
522
+ query_params[:'userId'] = user_id
523
+ query_params[:'userSecret'] = user_secret
524
+
525
+ # header parameters
526
+ header_params = opts[:header_params] || {}
527
+ # HTTP header 'Accept' (if needed)
528
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
529
+ # HTTP header 'Content-Type'
530
+ content_type = @api_client.select_header_content_type(['application/json'])
531
+ if !content_type.nil?
532
+ header_params['Content-Type'] = content_type
533
+ end
534
+
535
+ # form parameters
536
+ form_params = opts[:form_params] || {}
537
+
538
+ # http body (model)
539
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(manual_trade_form_bracket)
540
+
541
+ # return_type
542
+ return_type = opts[:debug_return_type] || 'AccountOrderRecord'
543
+
544
+ # auth_names
545
+ auth_names = opts[:debug_auth_names] || ['PartnerClientId', 'PartnerSignature', 'PartnerTimestamp']
546
+
547
+ new_options = opts.merge(
548
+ :operation => :"TradingApi.place_bracket_order",
549
+ :header_params => header_params,
550
+ :query_params => query_params,
551
+ :form_params => form_params,
552
+ :body => post_body,
553
+ :auth_names => auth_names,
554
+ :return_type => return_type
555
+ )
556
+
557
+ data, status_code, headers, response = @api_client.call_api(:POST, local_var_path, new_options)
558
+ if @api_client.config.debugging
559
+ @api_client.config.logger.debug "API called: TradingApi#place_bracket_order\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
560
+ end
561
+ return data, status_code, headers, response
562
+ end
563
+
564
+
411
565
  # Place order
412
566
  #
413
567
  # Places a brokerage order in the specified account. The order could be rejected by the brokerage if it is invalid or if the account does not have sufficient funds.
@@ -423,17 +577,14 @@ module SnapTrade
423
577
  # @param user_id [String]
424
578
  # @param user_secret [String]
425
579
  # @param universal_symbol_id [String] The universal symbol ID of the security to trade. Must be 'null' if `symbol` is provided, otherwise must be provided.
426
- # @param symbol [String] 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'.
580
+ # @param symbol [String] 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'.
427
581
  # @param price [Float] The limit price for `Limit` and `StopLimit` orders.
428
582
  # @param stop [Float] The price at which a stop order is triggered for `Stop` and `StopLimit` orders.
429
583
  # @param units [Float] For Equity orders, this represents the number of shares for the order. This can be a decimal for fractional orders. Must be `null` if `notional_value` is provided. If placing an Option order, this field represents the number of contracts to buy or sell. (e.g., 1 contract = 100 shares).
430
584
  # @param notional_value [ManualTradeFormNotionalValue]
431
- # @param order_class [OrderClass] 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
432
- # @param stop_loss [ManualTradeFormWithOptionsStopLoss]
433
- # @param take_profit [ManualTradeFormWithOptionsTakeProfit]
434
585
  # @param body [ManualTradeFormWithOptions]
435
586
  # @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
436
- def place_force_order(account_id:, action:, order_type:, time_in_force:, user_id:, user_secret:, universal_symbol_id: SENTINEL, symbol: SENTINEL, price: SENTINEL, stop: SENTINEL, units: SENTINEL, notional_value: SENTINEL, order_class: SENTINEL, stop_loss: SENTINEL, take_profit: SENTINEL, extra: {})
587
+ def place_force_order(account_id:, action:, order_type:, time_in_force:, user_id:, user_secret:, universal_symbol_id: SENTINEL, symbol: SENTINEL, price: SENTINEL, stop: SENTINEL, units: SENTINEL, notional_value: SENTINEL, extra: {})
437
588
  _body = {}
438
589
  _body[:account_id] = account_id if account_id != SENTINEL
439
590
  _body[:action] = action if action != SENTINEL
@@ -445,9 +596,6 @@ module SnapTrade
445
596
  _body[:stop] = stop if stop != SENTINEL
446
597
  _body[:units] = units if units != SENTINEL
447
598
  _body[:notional_value] = notional_value if notional_value != SENTINEL
448
- _body[:order_class] = order_class if order_class != SENTINEL
449
- _body[:stop_loss] = stop_loss if stop_loss != SENTINEL
450
- _body[:take_profit] = take_profit if take_profit != SENTINEL
451
599
  manual_trade_form_with_options = _body
452
600
  data, _status_code, _headers = place_force_order_with_http_info_impl(user_id, user_secret, manual_trade_form_with_options, extra)
453
601
  data
@@ -468,17 +616,14 @@ module SnapTrade
468
616
  # @param user_id [String]
469
617
  # @param user_secret [String]
470
618
  # @param universal_symbol_id [String] The universal symbol ID of the security to trade. Must be 'null' if `symbol` is provided, otherwise must be provided.
471
- # @param symbol [String] 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'.
619
+ # @param symbol [String] 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'.
472
620
  # @param price [Float] The limit price for `Limit` and `StopLimit` orders.
473
621
  # @param stop [Float] The price at which a stop order is triggered for `Stop` and `StopLimit` orders.
474
622
  # @param units [Float] For Equity orders, this represents the number of shares for the order. This can be a decimal for fractional orders. Must be `null` if `notional_value` is provided. If placing an Option order, this field represents the number of contracts to buy or sell. (e.g., 1 contract = 100 shares).
475
623
  # @param notional_value [ManualTradeFormNotionalValue]
476
- # @param order_class [OrderClass] 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
477
- # @param stop_loss [ManualTradeFormWithOptionsStopLoss]
478
- # @param take_profit [ManualTradeFormWithOptionsTakeProfit]
479
624
  # @param body [ManualTradeFormWithOptions]
480
625
  # @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
481
- def place_force_order_with_http_info(account_id:, action:, order_type:, time_in_force:, user_id:, user_secret:, universal_symbol_id: SENTINEL, symbol: SENTINEL, price: SENTINEL, stop: SENTINEL, units: SENTINEL, notional_value: SENTINEL, order_class: SENTINEL, stop_loss: SENTINEL, take_profit: SENTINEL, extra: {})
626
+ def place_force_order_with_http_info(account_id:, action:, order_type:, time_in_force:, user_id:, user_secret:, universal_symbol_id: SENTINEL, symbol: SENTINEL, price: SENTINEL, stop: SENTINEL, units: SENTINEL, notional_value: SENTINEL, extra: {})
482
627
  _body = {}
483
628
  _body[:account_id] = account_id if account_id != SENTINEL
484
629
  _body[:action] = action if action != SENTINEL
@@ -490,9 +635,6 @@ module SnapTrade
490
635
  _body[:stop] = stop if stop != SENTINEL
491
636
  _body[:units] = units if units != SENTINEL
492
637
  _body[:notional_value] = notional_value if notional_value != SENTINEL
493
- _body[:order_class] = order_class if order_class != SENTINEL
494
- _body[:stop_loss] = stop_loss if stop_loss != SENTINEL
495
- _body[:take_profit] = take_profit if take_profit != SENTINEL
496
638
  manual_trade_form_with_options = _body
497
639
  place_force_order_with_http_info_impl(user_id, user_secret, manual_trade_form_with_options, extra)
498
640
  end
@@ -68,6 +68,8 @@ module SnapTrade
68
68
  # A unique ID for the security within SnapTrade, scoped to the brokerage account that the security belongs to. This is a legacy field and should not be used. Do not rely on this being a stable ID as it can change.
69
69
  attr_accessor :symbol
70
70
 
71
+ attr_accessor :child_brokerage_order_ids
72
+
71
73
  # Attribute mapping from ruby-style variable name to JSON key.
72
74
  def self.attribute_map
73
75
  {
@@ -89,7 +91,8 @@ module SnapTrade
89
91
  :'time_updated' => :'time_updated',
90
92
  :'time_executed' => :'time_executed',
91
93
  :'expiry_date' => :'expiry_date',
92
- :'symbol' => :'symbol'
94
+ :'symbol' => :'symbol',
95
+ :'child_brokerage_order_ids' => :'child_brokerage_order_ids'
93
96
  }
94
97
  end
95
98
 
@@ -119,7 +122,8 @@ module SnapTrade
119
122
  :'time_updated' => :'Time',
120
123
  :'time_executed' => :'Time',
121
124
  :'expiry_date' => :'Time',
122
- :'symbol' => :'String'
125
+ :'symbol' => :'String',
126
+ :'child_brokerage_order_ids' => :'AccountOrderRecordChildBrokerageOrderIds'
123
127
  }
124
128
  end
125
129
 
@@ -137,6 +141,7 @@ module SnapTrade
137
141
  :'time_updated',
138
142
  :'time_executed',
139
143
  :'expiry_date',
144
+ :'child_brokerage_order_ids'
140
145
  ])
141
146
  end
142
147
 
@@ -230,6 +235,10 @@ module SnapTrade
230
235
  if attributes.key?(:'symbol')
231
236
  self.symbol = attributes[:'symbol']
232
237
  end
238
+
239
+ if attributes.key?(:'child_brokerage_order_ids')
240
+ self.child_brokerage_order_ids = attributes[:'child_brokerage_order_ids']
241
+ end
233
242
  end
234
243
 
235
244
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -268,7 +277,8 @@ module SnapTrade
268
277
  time_updated == o.time_updated &&
269
278
  time_executed == o.time_executed &&
270
279
  expiry_date == o.expiry_date &&
271
- symbol == o.symbol
280
+ symbol == o.symbol &&
281
+ child_brokerage_order_ids == o.child_brokerage_order_ids
272
282
  end
273
283
 
274
284
  # @see the `==` method
@@ -280,7 +290,7 @@ module SnapTrade
280
290
  # Calculates hash code according to all attributes.
281
291
  # @return [Integer] Hash code
282
292
  def hash
283
- [brokerage_order_id, status, universal_symbol, option_symbol, action, total_quantity, open_quantity, canceled_quantity, filled_quantity, execution_price, limit_price, stop_price, order_type, time_in_force, time_placed, time_updated, time_executed, expiry_date, symbol].hash
293
+ [brokerage_order_id, status, universal_symbol, option_symbol, action, total_quantity, open_quantity, canceled_quantity, filled_quantity, execution_price, limit_price, stop_price, order_type, time_in_force, time_placed, time_updated, time_executed, expiry_date, symbol, child_brokerage_order_ids].hash
284
294
  end
285
295
 
286
296
  # Builds the object from hash
@@ -0,0 +1,234 @@
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 AccountOrderRecordChildBrokerageOrderIds
15
+ # The brokerage order ID for the take profit leg of the bracket order
16
+ attr_accessor :take_profit_order_id
17
+
18
+ # The brokerage order ID for the stop loss leg of the bracket order
19
+ attr_accessor :stop_loss_order_id
20
+
21
+ # Attribute mapping from ruby-style variable name to JSON key.
22
+ def self.attribute_map
23
+ {
24
+ :'take_profit_order_id' => :'take_profit_order_id',
25
+ :'stop_loss_order_id' => :'stop_loss_order_id'
26
+ }
27
+ end
28
+
29
+ # Returns all the JSON keys this model knows about
30
+ def self.acceptable_attributes
31
+ attribute_map.values
32
+ end
33
+
34
+ # Attribute type mapping.
35
+ def self.openapi_types
36
+ {
37
+ :'take_profit_order_id' => :'String',
38
+ :'stop_loss_order_id' => :'String'
39
+ }
40
+ end
41
+
42
+ # List of attributes with nullable: true
43
+ def self.openapi_nullable
44
+ Set.new([
45
+ ])
46
+ end
47
+
48
+ # List of class defined in allOf (OpenAPI v3)
49
+ def self.openapi_all_of
50
+ [
51
+ :'ChildBrokerageOrderIDs'
52
+ ]
53
+ end
54
+
55
+ # Initializes the object
56
+ # @param [Hash] attributes Model attributes in the form of hash
57
+ def initialize(attributes = {})
58
+ if (!attributes.is_a?(Hash))
59
+ fail ArgumentError, "The input argument (attributes) must be a hash in `SnapTrade::AccountOrderRecordChildBrokerageOrderIds` initialize method"
60
+ end
61
+
62
+ # check to see if the attribute exists and convert string to symbol for hash key
63
+ attributes = attributes.each_with_object({}) { |(k, v), h|
64
+ if (!self.class.attribute_map.key?(k.to_sym))
65
+ fail ArgumentError, "`#{k}` is not a valid attribute in `SnapTrade::AccountOrderRecordChildBrokerageOrderIds`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
66
+ end
67
+ h[k.to_sym] = v
68
+ }
69
+
70
+ if attributes.key?(:'take_profit_order_id')
71
+ self.take_profit_order_id = attributes[:'take_profit_order_id']
72
+ end
73
+
74
+ if attributes.key?(:'stop_loss_order_id')
75
+ self.stop_loss_order_id = attributes[:'stop_loss_order_id']
76
+ end
77
+ end
78
+
79
+ # Show invalid properties with the reasons. Usually used together with valid?
80
+ # @return Array for valid properties with the reasons
81
+ def list_invalid_properties
82
+ invalid_properties = Array.new
83
+ invalid_properties
84
+ end
85
+
86
+ # Check to see if the all the properties in the model are valid
87
+ # @return true if the model is valid
88
+ def valid?
89
+ true
90
+ end
91
+
92
+ # Checks equality by comparing each attribute.
93
+ # @param [Object] Object to be compared
94
+ def ==(o)
95
+ return true if self.equal?(o)
96
+ self.class == o.class &&
97
+ take_profit_order_id == o.take_profit_order_id &&
98
+ stop_loss_order_id == o.stop_loss_order_id
99
+ end
100
+
101
+ # @see the `==` method
102
+ # @param [Object] Object to be compared
103
+ def eql?(o)
104
+ self == o
105
+ end
106
+
107
+ # Calculates hash code according to all attributes.
108
+ # @return [Integer] Hash code
109
+ def hash
110
+ [take_profit_order_id, stop_loss_order_id].hash
111
+ end
112
+
113
+ # Builds the object from hash
114
+ # @param [Hash] attributes Model attributes in the form of hash
115
+ # @return [Object] Returns the model itself
116
+ def self.build_from_hash(attributes)
117
+ new.build_from_hash(attributes)
118
+ end
119
+
120
+ # Builds the object from hash
121
+ # @param [Hash] attributes Model attributes in the form of hash
122
+ # @return [Object] Returns the model itself
123
+ def build_from_hash(attributes)
124
+ return nil unless attributes.is_a?(Hash)
125
+ attributes = attributes.transform_keys(&:to_sym)
126
+ self.class.openapi_types.each_pair do |key, type|
127
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
128
+ self.send("#{key}=", nil)
129
+ elsif type =~ /\AArray<(.*)>/i
130
+ # check to ensure the input is an array given that the attribute
131
+ # is documented as an array but the input is not
132
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
133
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
134
+ end
135
+ elsif !attributes[self.class.attribute_map[key]].nil?
136
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
137
+ end
138
+ end
139
+
140
+ self
141
+ end
142
+
143
+ # Deserializes the data based on type
144
+ # @param string type Data type
145
+ # @param string value Value to be deserialized
146
+ # @return [Object] Deserialized data
147
+ def _deserialize(type, value)
148
+ case type.to_sym
149
+ when :Time
150
+ Time.parse(value)
151
+ when :Date
152
+ Date.parse(value)
153
+ when :String
154
+ value.to_s
155
+ when :Integer
156
+ value.to_i
157
+ when :Float
158
+ value.to_f
159
+ when :Boolean
160
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
161
+ true
162
+ else
163
+ false
164
+ end
165
+ when :Object
166
+ # generic object (usually a Hash), return directly
167
+ value
168
+ when /\AArray<(?<inner_type>.+)>\z/
169
+ inner_type = Regexp.last_match[:inner_type]
170
+ value.map { |v| _deserialize(inner_type, v) }
171
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
172
+ k_type = Regexp.last_match[:k_type]
173
+ v_type = Regexp.last_match[:v_type]
174
+ {}.tap do |hash|
175
+ value.each do |k, v|
176
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
177
+ end
178
+ end
179
+ else # model
180
+ # models (e.g. Pet) or oneOf
181
+ klass = SnapTrade.const_get(type)
182
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
183
+ end
184
+ end
185
+
186
+ # Returns the string representation of the object
187
+ # @return [String] String presentation of the object
188
+ def to_s
189
+ to_hash.to_s
190
+ end
191
+
192
+ # to_body is an alias to to_hash (backward compatibility)
193
+ # @return [Hash] Returns the object in the form of hash
194
+ def to_body
195
+ to_hash
196
+ end
197
+
198
+ # Returns the object in the form of hash
199
+ # @return [Hash] Returns the object in the form of hash
200
+ def to_hash
201
+ hash = {}
202
+ self.class.attribute_map.each_pair do |attr, param|
203
+ value = self.send(attr)
204
+ if value.nil?
205
+ is_nullable = self.class.openapi_nullable.include?(attr)
206
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
207
+ end
208
+
209
+ hash[param] = _to_hash(value)
210
+ end
211
+ hash
212
+ end
213
+
214
+ # Outputs non-array value in the form of hash
215
+ # For object, use to_hash. Otherwise, just return the value
216
+ # @param [Object] value Any valid value
217
+ # @return [Hash] Returns the value in the form of hash
218
+ def _to_hash(value)
219
+ if value.is_a?(Array)
220
+ value.compact.map { |v| _to_hash(v) }
221
+ elsif value.is_a?(Hash)
222
+ {}.tap do |hash|
223
+ value.each { |k, v| hash[k] = _to_hash(v) }
224
+ end
225
+ elsif value.respond_to? :to_hash
226
+ value.to_hash
227
+ else
228
+ value
229
+ end
230
+ end
231
+
232
+ end
233
+
234
+ end
@@ -39,7 +39,7 @@ module SnapTrade
39
39
  def self.openapi_types
40
40
  {
41
41
  :'id' => :'String',
42
- :'type' => :'Type',
42
+ :'type' => :'BrokerageAuthorizationTypeReadOnlyType',
43
43
  :'auth_type' => :'AuthType',
44
44
  :'brokerage' => :'BrokerageAuthorizationTypeReadOnlyBrokerage'
45
45
  }
@@ -11,12 +11,12 @@ require 'date'
11
11
  require 'time'
12
12
 
13
13
  module SnapTrade
14
- class OrderClass
15
- SIMPLE = "SIMPLE".freeze
16
- BRACKET = "BRACKET".freeze
14
+ class BrokerageAuthorizationTypeReadOnlyType
15
+ READ = "read".freeze
16
+ TRADE = "trade".freeze
17
17
 
18
18
  def self.all_vars
19
- @all_vars ||= [SIMPLE, BRACKET].freeze
19
+ @all_vars ||= [READ, TRADE].freeze
20
20
  end
21
21
 
22
22
  # Builds the enum from string
@@ -30,8 +30,8 @@ module SnapTrade
30
30
  # @param [String] The enum value in the form of the string
31
31
  # @return [String] The enum value
32
32
  def build_from_hash(value)
33
- return value if OrderClass.all_vars.include?(value)
34
- raise "Invalid ENUM value #{value} for class #OrderClass"
33
+ return value if BrokerageAuthorizationTypeReadOnlyType.all_vars.include?(value)
34
+ raise "Invalid ENUM value #{value} for class #BrokerageAuthorizationTypeReadOnlyType"
35
35
  end
36
36
  end
37
37
  end