snaptrade 2.0.67 → 2.0.69

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5fb02b874962409687c7f1c318de8b5c3e149eb93d01360c8dfd51b0bc07c0b0
4
- data.tar.gz: 38281e1df97963be4fee6cb83b014493bd08306ec7f438ec6fb841fa7337f843
3
+ metadata.gz: fd705b5a44a2c0f1c21353df0fef822943c839612d2ade5059236606570d9b0f
4
+ data.tar.gz: 28cd6478a9a9cbb078ccf658716f0bbb5de4b44ef36db490612ebd324dff746f
5
5
  SHA512:
6
- metadata.gz: d8549da1e537227be0291699a6883fb1fb56cd3753a70c8bccd6fe062f331a7d97104265a011faa73830e8d57f1d1501a0c63cd9e723d0e2523eef5485a64ff6
7
- data.tar.gz: 5758bea470df0d3c43786ae6ac3e7b6e889c26c52d26c9afe4b66a4fed8fe603fe0cbf41e6c883b11a930f2052945199511ea494f3f792e2f9b86ad65e5153b2
6
+ metadata.gz: b607e11aa615fc10e5a29c18bdc4341b00ed7c1042dc69e7cc14af18aa1fa72910c647db53e5d44f64f7bdb3ce50f2273fae649e949976c3209da2e741254c38
7
+ data.tar.gz: 830212f7b8385cf721c8cc2b4d0e136084b245fe90094bcd45f6a65816995f11e14856f13fc80c05cadb1072d034668b4d6ea2eca08b53d256c6a5adf4cdf287
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- snaptrade (2.0.67)
4
+ snaptrade (2.0.69)
5
5
  faraday (>= 1.0.1, < 3.0)
6
6
  faraday-multipart (~> 1.0, >= 1.0.4)
7
7
 
data/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  Connect brokerage accounts to your app for live positions and trading
8
8
 
9
- [![npm](https://img.shields.io/badge/gem-v2.0.67-blue)](https://rubygems.org/gems/snaptrade/versions/2.0.67)
9
+ [![npm](https://img.shields.io/badge/gem-v2.0.69-blue)](https://rubygems.org/gems/snaptrade/versions/2.0.69)
10
10
  [![More Info](https://img.shields.io/badge/More%20Info-Click%20Here-orange)](https://snaptrade.com/)
11
11
 
12
12
  </div>
@@ -73,7 +73,7 @@ Connect brokerage accounts to your app for live positions and trading
73
73
  Add to Gemfile:
74
74
 
75
75
  ```ruby
76
- gem 'snaptrade', '~> 2.0.67'
76
+ gem 'snaptrade', '~> 2.0.69'
77
77
  ```
78
78
 
79
79
  ## Getting Started<a id="getting-started"></a>
@@ -308,10 +308,11 @@ p result
308
308
 
309
309
  ### `snaptrade.account_information.get_user_account_recent_orders`<a id="snaptradeaccount_informationget_user_account_recent_orders"></a>
310
310
 
311
- Returns a list of orders executed in the last 24 hours in the specified account.
312
- This endpoint is realtime and can be used to quickly check if account state has recently changed due to an execution
313
- Differs from /orders in that it only returns orders that have been *executed* in the last 24 hours as opposed to pending or cancelled orders up to 30 days old
314
- *Please contact support for access as this endpoint is not enabled by default.*
311
+ A lightweight endpoint that returns a list of orders executed in the last 24 hours in the specified account.
312
+ This endpoint is realtime and can be used to quickly check if account state has recently changed due to an execution, or check status of recently placed orders
313
+ Differs from /orders in that it is realtime, and only checks the last 24 hours as opposed to the last 30 days
314
+ By default only returns executed orders, but that can be changed by setting *only_executed* to false
315
+ **Please contact support for access as this endpoint is not enabled by default.**
315
316
 
316
317
 
317
318
  #### 🛠️ Usage<a id="🛠️-usage"></a>
@@ -575,12 +575,13 @@ module SnapTrade
575
575
  end
576
576
 
577
577
 
578
- # List account recent executed orders
578
+ # List account recent orders (last 24 hours only)
579
579
  #
580
- # Returns a list of orders executed in the last 24 hours in the specified account.
581
- # This endpoint is realtime and can be used to quickly check if account state has recently changed due to an execution
582
- # Differs from /orders in that it only returns orders that have been *executed* in the last 24 hours as opposed to pending or cancelled orders up to 30 days old
583
- # *Please contact support for access as this endpoint is not enabled by default.*
580
+ # A lightweight endpoint that returns a list of orders executed in the last 24 hours in the specified account.
581
+ # This endpoint is realtime and can be used to quickly check if account state has recently changed due to an execution, or check status of recently placed orders
582
+ # Differs from /orders in that it is realtime, and only checks the last 24 hours as opposed to the last 30 days
583
+ # By default only returns executed orders, but that can be changed by setting *only_executed* to false
584
+ # **Please contact support for access as this endpoint is not enabled by default.**
584
585
  #
585
586
  # @param user_id [String]
586
587
  # @param user_secret [String]
@@ -593,12 +594,13 @@ module SnapTrade
593
594
  data
594
595
  end
595
596
 
596
- # List account recent executed orders
597
+ # List account recent orders (last 24 hours only)
597
598
  #
598
- # Returns a list of orders executed in the last 24 hours in the specified account.
599
- # This endpoint is realtime and can be used to quickly check if account state has recently changed due to an execution
600
- # Differs from /orders in that it only returns orders that have been *executed* in the last 24 hours as opposed to pending or cancelled orders up to 30 days old
601
- # *Please contact support for access as this endpoint is not enabled by default.*
599
+ # A lightweight endpoint that returns a list of orders executed in the last 24 hours in the specified account.
600
+ # This endpoint is realtime and can be used to quickly check if account state has recently changed due to an execution, or check status of recently placed orders
601
+ # Differs from /orders in that it is realtime, and only checks the last 24 hours as opposed to the last 30 days
602
+ # By default only returns executed orders, but that can be changed by setting *only_executed* to false
603
+ # **Please contact support for access as this endpoint is not enabled by default.**
602
604
  #
603
605
  # @param user_id [String]
604
606
  # @param user_secret [String]
@@ -610,8 +612,8 @@ module SnapTrade
610
612
  get_user_account_recent_orders_with_http_info_impl(user_id, user_secret, account_id, extra)
611
613
  end
612
614
 
613
- # List account recent executed orders
614
- # Returns a list of orders executed in the last 24 hours in the specified account. This endpoint is realtime and can be used to quickly check if account state has recently changed due to an execution Differs from /orders in that it only returns orders that have been *executed* in the last 24 hours as opposed to pending or cancelled orders up to 30 days old *Please contact support for access as this endpoint is not enabled by default.*
615
+ # List account recent orders (last 24 hours only)
616
+ # A lightweight endpoint that returns a list of orders executed in the last 24 hours in the specified account. This endpoint is realtime and can be used to quickly check if account state has recently changed due to an execution, or check status of recently placed orders Differs from /orders in that it is realtime, and only checks the last 24 hours as opposed to the last 30 days By default only returns executed orders, but that can be changed by setting *only_executed* to false **Please contact support for access as this endpoint is not enabled by default.**
615
617
  # @param user_id [String]
616
618
  # @param user_secret [String]
617
619
  # @param account_id [String]
@@ -623,8 +625,8 @@ module SnapTrade
623
625
  data
624
626
  end
625
627
 
626
- # List account recent executed orders
627
- # Returns a list of orders executed in the last 24 hours in the specified account. This endpoint is realtime and can be used to quickly check if account state has recently changed due to an execution Differs from /orders in that it only returns orders that have been *executed* in the last 24 hours as opposed to pending or cancelled orders up to 30 days old *Please contact support for access as this endpoint is not enabled by default.*
628
+ # List account recent orders (last 24 hours only)
629
+ # A lightweight endpoint that returns a list of orders executed in the last 24 hours in the specified account. This endpoint is realtime and can be used to quickly check if account state has recently changed due to an execution, or check status of recently placed orders Differs from /orders in that it is realtime, and only checks the last 24 hours as opposed to the last 30 days By default only returns executed orders, but that can be changed by setting *only_executed* to false **Please contact support for access as this endpoint is not enabled by default.**
628
630
  # @param user_id [String]
629
631
  # @param user_secret [String]
630
632
  # @param account_id [String]
@@ -44,6 +44,9 @@ module SnapTrade
44
44
  # This field is deprecated.
45
45
  attr_accessor :cash_restrictions
46
46
 
47
+ # The account type as provided by the brokerage
48
+ attr_accessor :raw_type
49
+
47
50
  # Attribute mapping from ruby-style variable name to JSON key.
48
51
  def self.attribute_map
49
52
  {
@@ -57,7 +60,8 @@ module SnapTrade
57
60
  :'balance' => :'balance',
58
61
  :'meta' => :'meta',
59
62
  :'portfolio_group' => :'portfolio_group',
60
- :'cash_restrictions' => :'cash_restrictions'
63
+ :'cash_restrictions' => :'cash_restrictions',
64
+ :'raw_type' => :'raw_type'
61
65
  }
62
66
  end
63
67
 
@@ -79,7 +83,8 @@ module SnapTrade
79
83
  :'balance' => :'AccountBalance',
80
84
  :'meta' => :'Hash<String, Object>',
81
85
  :'portfolio_group' => :'String',
82
- :'cash_restrictions' => :'Array<String>'
86
+ :'cash_restrictions' => :'Array<String>',
87
+ :'raw_type' => :'String'
83
88
  }
84
89
  end
85
90
 
@@ -87,6 +92,7 @@ module SnapTrade
87
92
  def self.openapi_nullable
88
93
  Set.new([
89
94
  :'name',
95
+ :'raw_type'
90
96
  ])
91
97
  end
92
98
 
@@ -152,6 +158,10 @@ module SnapTrade
152
158
  self.cash_restrictions = value
153
159
  end
154
160
  end
161
+
162
+ if attributes.key?(:'raw_type')
163
+ self.raw_type = attributes[:'raw_type']
164
+ end
155
165
  end
156
166
 
157
167
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -217,7 +227,8 @@ module SnapTrade
217
227
  balance == o.balance &&
218
228
  meta == o.meta &&
219
229
  portfolio_group == o.portfolio_group &&
220
- cash_restrictions == o.cash_restrictions
230
+ cash_restrictions == o.cash_restrictions &&
231
+ raw_type == o.raw_type
221
232
  end
222
233
 
223
234
  # @see the `==` method
@@ -229,7 +240,7 @@ module SnapTrade
229
240
  # Calculates hash code according to all attributes.
230
241
  # @return [Integer] Hash code
231
242
  def hash
232
- [id, brokerage_authorization, name, number, institution_name, created_date, sync_status, balance, meta, portfolio_group, cash_restrictions].hash
243
+ [id, brokerage_authorization, name, number, institution_name, created_date, sync_status, balance, meta, portfolio_group, cash_restrictions, raw_type].hash
233
244
  end
234
245
 
235
246
  # Builds the object from hash
@@ -8,5 +8,5 @@ Contact: api@snaptrade.com
8
8
  =end
9
9
 
10
10
  module SnapTrade
11
- VERSION = '2.0.67'
11
+ VERSION = '2.0.69'
12
12
  end
@@ -100,8 +100,8 @@ describe 'AccountInformationApi' do
100
100
  end
101
101
 
102
102
  # unit tests for get_user_account_recent_orders
103
- # List account recent executed orders
104
- # Returns a list of orders executed in the last 24 hours in the specified account. This endpoint is realtime and can be used to quickly check if account state has recently changed due to an execution Differs from /orders in that it only returns orders that have been *executed* in the last 24 hours as opposed to pending or cancelled orders up to 30 days old *Please contact support for access as this endpoint is not enabled by default.*
103
+ # List account recent orders (last 24 hours only)
104
+ # A lightweight endpoint that returns a list of orders executed in the last 24 hours in the specified account. This endpoint is realtime and can be used to quickly check if account state has recently changed due to an execution, or check status of recently placed orders Differs from /orders in that it is realtime, and only checks the last 24 hours as opposed to the last 30 days By default only returns executed orders, but that can be changed by setting *only_executed* to false **Please contact support for access as this endpoint is not enabled by default.**
105
105
  # @param user_id
106
106
  # @param user_secret
107
107
  # @param account_id
@@ -86,4 +86,10 @@ describe SnapTrade::Account do
86
86
  end
87
87
  end
88
88
 
89
+ describe 'test attribute "raw_type"' do
90
+ it 'should work' do
91
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
+ end
93
+ end
94
+
89
95
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: snaptrade
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.67
4
+ version: 2.0.69
5
5
  platform: ruby
6
6
  authors:
7
7
  - SnapTrade
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-01-08 00:00:00.000000000 Z
11
+ date: 2025-01-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -369,132 +369,132 @@ signing_key:
369
369
  specification_version: 4
370
370
  summary: SnapTrade Ruby Gem
371
371
  test_files:
372
- - spec/api/api_status_api_spec.rb
373
- - spec/api/account_information_api_spec.rb
374
- - spec/api/connections_api_spec.rb
375
372
  - spec/api/options_api_spec.rb
376
373
  - spec/api/trading_api_spec.rb
377
374
  - spec/api/reference_data_api_spec.rb
378
- - spec/api/transactions_and_reporting_api_spec.rb
379
375
  - spec/api/authentication_api_spec.rb
376
+ - spec/api/account_information_api_spec.rb
377
+ - spec/api/api_status_api_spec.rb
378
+ - spec/api/connections_api_spec.rb
379
+ - spec/api/transactions_and_reporting_api_spec.rb
380
380
  - spec/api_client_spec.rb
381
381
  - spec/configuration_spec.rb
382
382
  - spec/getting_started_spec.rb
383
- - spec/models/snap_trade_login_user_request_body_spec.rb
384
- - spec/models/snap_trade_register_user_request_body_spec.rb
385
- - spec/models/universal_activity_currency_spec.rb
386
- - spec/models/performance_custom_spec.rb
387
- - spec/models/option_strategy_legs_inner_spec.rb
388
- - spec/models/option_leg_spec.rb
389
- - spec/models/account_spec.rb
390
- - spec/models/exchange_rate_pairs_spec.rb
391
- - spec/models/recent_orders_response_spec.rb
392
- - spec/models/model403_feature_not_enabled_response_spec.rb
393
- - spec/models/time_in_force_strict_spec.rb
394
- - spec/models/options_get_option_strategy_request_spec.rb
395
- - spec/models/account_sync_status_spec.rb
396
- - spec/models/brokerage_spec.rb
383
+ - spec/models/authentication_login_snap_trade_user200_response_spec.rb
384
+ - spec/models/strategy_order_record_status_spec.rb
385
+ - spec/models/trading_cancel_user_account_order_request_spec.rb
397
386
  - spec/models/exchange_spec.rb
398
- - spec/models/option_brokerage_symbol_spec.rb
399
- - spec/models/underlying_symbol_type_spec.rb
400
- - spec/models/brokerage_authorization_spec.rb
387
+ - spec/models/manual_trade_spec.rb
388
+ - spec/models/login_redirect_uri_spec.rb
389
+ - spec/models/encrypted_response_encrypted_message_data_spec.rb
390
+ - spec/models/strategy_quotes_spec.rb
391
+ - spec/models/rate_of_return_object_spec.rb
392
+ - spec/models/account_sync_status_spec.rb
393
+ - spec/models/options_place_option_strategy_request_spec.rb
401
394
  - spec/models/account_order_record_spec.rb
402
- - spec/models/net_contributions_spec.rb
403
- - spec/models/symbol_exchange_spec.rb
404
- - spec/models/universal_activity_spec.rb
405
- - spec/models/holdings_status_spec.rb
406
- - spec/models/manual_trade_form_with_options_spec.rb
407
- - spec/models/account_balance_total_spec.rb
408
- - spec/models/manual_trade_form_spec.rb
409
- - spec/models/brokerage_type_spec.rb
410
- - spec/models/model402_brokerage_auth_already_disabled_exception_spec.rb
411
- - spec/models/brokerage_authorization_type_read_only_spec.rb
412
- - spec/models/figi_instrument_spec.rb
395
+ - spec/models/brokerage_spec.rb
396
+ - spec/models/time_in_force_strict_spec.rb
397
+ - spec/models/action_strict_with_options_spec.rb
398
+ - spec/models/exchange_rate_pairs_spec.rb
399
+ - spec/models/account_holdings_account_spec.rb
413
400
  - spec/models/model403_failed_request_response_spec.rb
414
- - spec/models/type_spec.rb
415
- - spec/models/account_order_record_status_spec.rb
401
+ - spec/models/account_simple_spec.rb
402
+ - spec/models/monthly_dividends_spec.rb
403
+ - spec/models/snap_trade_register_user_request_body_spec.rb
404
+ - spec/models/options_position_spec.rb
405
+ - spec/models/position_symbol_spec.rb
416
406
  - spec/models/model425_failed_request_response_spec.rb
417
- - spec/models/option_chain_inner_chain_per_root_inner_chain_per_strike_price_inner_spec.rb
418
- - spec/models/model404_failed_request_response_spec.rb
419
- - spec/models/option_leg_action_spec.rb
420
- - spec/models/option_chain_inner_chain_per_root_inner_spec.rb
421
- - spec/models/user_i_dand_secret_spec.rb
422
- - spec/models/dividend_at_date_spec.rb
423
- - spec/models/order_type_strict_spec.rb
424
- - spec/models/manual_trade_impact_spec.rb
425
- - spec/models/brokerage_authorization_disabled_confirmation_spec.rb
426
- - spec/models/model500_unexpected_exception_response_spec.rb
427
- - spec/models/brokerage_authorization_type_read_only_brokerage_spec.rb
407
+ - spec/models/account_balance_spec.rb
408
+ - spec/models/underlying_symbol_exchange_spec.rb
428
409
  - spec/models/manual_trade_symbol_spec.rb
429
- - spec/models/options_symbol_spec.rb
430
- - spec/models/symbol_spec.rb
431
- - spec/models/universal_activity_symbol_spec.rb
432
- - spec/models/action_strict_with_options_spec.rb
433
- - spec/models/monthly_dividends_spec.rb
410
+ - spec/models/universal_activity_spec.rb
411
+ - spec/models/dividend_at_date_spec.rb
412
+ - spec/models/option_brokerage_symbol_spec.rb
413
+ - spec/models/account_holdings_spec.rb
414
+ - spec/models/underlying_symbol_type_spec.rb
434
415
  - spec/models/model400_failed_request_response_spec.rb
435
- - spec/models/connections_session_events200_response_inner_spec.rb
436
- - spec/models/symbol_query_spec.rb
437
- - spec/models/options_place_option_strategy_request_spec.rb
438
- - spec/models/notional_value_spec.rb
439
- - spec/models/account_order_record_universal_symbol_spec.rb
440
- - spec/models/timeframe_spec.rb
441
- - spec/models/session_event_type_spec.rb
442
- - spec/models/underlying_symbol_spec.rb
443
- - spec/models/trading_cancel_user_account_order_request_spec.rb
444
- - spec/models/us_exchange_spec.rb
445
- - spec/models/strategy_order_record_status_spec.rb
446
- - spec/models/balance_spec.rb
447
- - spec/models/rate_of_return_object_spec.rb
448
- - spec/models/universal_symbol_spec.rb
449
- - spec/models/strategy_quotes_greek_spec.rb
450
- - spec/models/options_position_spec.rb
416
+ - spec/models/session_event_spec.rb
417
+ - spec/models/model403_feature_not_enabled_response_spec.rb
451
418
  - spec/models/manual_trade_balance_spec.rb
419
+ - spec/models/symbol_currency_spec.rb
420
+ - spec/models/model402_brokerage_auth_disabled_response_spec.rb
421
+ - spec/models/model402_brokerage_auth_already_disabled_exception_spec.rb
422
+ - spec/models/security_type_spec.rb
423
+ - spec/models/option_strategy_spec.rb
424
+ - spec/models/order_type_strict_spec.rb
425
+ - spec/models/rate_of_return_response_spec.rb
426
+ - spec/models/net_dividend_spec.rb
427
+ - spec/models/symbol_figi_instrument_spec.rb
428
+ - spec/models/options_position_currency_spec.rb
452
429
  - spec/models/option_type_spec.rb
453
- - spec/models/validated_trade_body_spec.rb
454
- - spec/models/sub_period_return_rate_spec.rb
455
- - spec/models/account_simple_spec.rb
456
- - spec/models/account_balance_spec.rb
430
+ - spec/models/brokerage_authorization_spec.rb
431
+ - spec/models/brokerage_authorization_type_read_only_spec.rb
457
432
  - spec/models/brokerage_authorization_refresh_confirmation_spec.rb
458
- - spec/models/auth_type_spec.rb
433
+ - spec/models/option_strategy_legs_inner_spec.rb
434
+ - spec/models/snap_trade_holdings_account_spec.rb
435
+ - spec/models/holdings_status_spec.rb
436
+ - spec/models/type_spec.rb
459
437
  - spec/models/encrypted_response_spec.rb
460
- - spec/models/underlying_symbol_exchange_spec.rb
461
- - spec/models/strategy_order_record_spec.rb
462
- - spec/models/manual_trade_spec.rb
438
+ - spec/models/option_chain_inner_spec.rb
439
+ - spec/models/balance_spec.rb
440
+ - spec/models/us_exchange_spec.rb
463
441
  - spec/models/delete_user_response_spec.rb
464
- - spec/models/connection_portal_version_spec.rb
465
- - spec/models/snap_trade_holdings_total_value_spec.rb
466
- - spec/models/transactions_status_spec.rb
467
- - spec/models/model402_brokerage_auth_disabled_response_spec.rb
468
- - spec/models/balance_currency_spec.rb
469
- - spec/models/partner_data_spec.rb
442
+ - spec/models/symbol_exchange_spec.rb
443
+ - spec/models/account_order_record_option_symbol_spec.rb
444
+ - spec/models/universal_activity_currency_spec.rb
445
+ - spec/models/timeframe_spec.rb
446
+ - spec/models/sub_period_return_rate_spec.rb
447
+ - spec/models/universal_activity_symbol_spec.rb
470
448
  - spec/models/position_spec.rb
471
- - spec/models/option_chain_inner_spec.rb
472
- - spec/models/snap_trade_holdings_account_spec.rb
473
- - spec/models/net_dividend_spec.rb
449
+ - spec/models/recent_orders_response_spec.rb
450
+ - spec/models/symbol_spec.rb
451
+ - spec/models/option_leg_spec.rb
452
+ - spec/models/brokerage_authorization_disabled_confirmation_spec.rb
453
+ - spec/models/options_symbol_spec.rb
454
+ - spec/models/transactions_status_spec.rb
455
+ - spec/models/account_order_record_status_spec.rb
456
+ - spec/models/manual_trade_form_spec.rb
457
+ - spec/models/currency_spec.rb
458
+ - spec/models/figi_instrument_spec.rb
474
459
  - spec/models/universal_activity_option_symbol_spec.rb
475
- - spec/models/option_strategy_spec.rb
460
+ - spec/models/performance_custom_spec.rb
461
+ - spec/models/account_spec.rb
462
+ - spec/models/connection_type_spec.rb
463
+ - spec/models/manual_trade_impact_spec.rb
464
+ - spec/models/action_strict_spec.rb
476
465
  - spec/models/model401_failed_request_response_spec.rb
477
- - spec/models/position_symbol_spec.rb
478
- - spec/models/options_position_currency_spec.rb
479
- - spec/models/authentication_login_snap_trade_user200_response_spec.rb
480
- - spec/models/account_holdings_spec.rb
481
- - spec/models/rate_of_return_response_spec.rb
482
- - spec/models/encrypted_response_encrypted_message_data_spec.rb
466
+ - spec/models/manual_trade_form_with_options_spec.rb
467
+ - spec/models/validated_trade_body_spec.rb
468
+ - spec/models/account_balance_total_spec.rb
469
+ - spec/models/brokerage_type_spec.rb
470
+ - spec/models/options_get_option_strategy_request_spec.rb
471
+ - spec/models/model500_unexpected_exception_response_spec.rb
483
472
  - spec/models/strategy_type_spec.rb
484
- - spec/models/manual_trade_and_impact_spec.rb
485
- - spec/models/currency_spec.rb
473
+ - spec/models/strategy_quotes_greek_spec.rb
474
+ - spec/models/connection_portal_version_spec.rb
475
+ - spec/models/connections_session_events200_response_inner_spec.rb
476
+ - spec/models/snap_trade_holdings_total_value_spec.rb
477
+ - spec/models/auth_type_spec.rb
478
+ - spec/models/snap_trade_login_user_request_body_spec.rb
479
+ - spec/models/user_i_dand_secret_spec.rb
486
480
  - spec/models/status_spec.rb
481
+ - spec/models/session_event_type_spec.rb
482
+ - spec/models/manual_trade_form_notional_value_spec.rb
483
+ - spec/models/option_chain_inner_chain_per_root_inner_chain_per_strike_price_inner_spec.rb
484
+ - spec/models/option_chain_inner_chain_per_root_inner_spec.rb
485
+ - spec/models/brokerage_authorization_type_read_only_brokerage_spec.rb
486
+ - spec/models/net_contributions_spec.rb
487
+ - spec/models/underlying_symbol_spec.rb
487
488
  - spec/models/symbols_quotes_inner_spec.rb
488
- - spec/models/login_redirect_uri_spec.rb
489
- - spec/models/connection_type_spec.rb
490
- - spec/models/account_order_record_option_symbol_spec.rb
491
- - spec/models/symbol_currency_spec.rb
492
- - spec/models/security_type_spec.rb
493
- - spec/models/session_event_spec.rb
494
- - spec/models/account_holdings_account_spec.rb
495
- - spec/models/strategy_quotes_spec.rb
489
+ - spec/models/account_order_record_universal_symbol_spec.rb
490
+ - spec/models/strategy_order_record_spec.rb
491
+ - spec/models/manual_trade_and_impact_spec.rb
492
+ - spec/models/notional_value_spec.rb
496
493
  - spec/models/past_value_spec.rb
497
- - spec/models/manual_trade_form_notional_value_spec.rb
498
- - spec/models/symbol_figi_instrument_spec.rb
499
- - spec/models/action_strict_spec.rb
494
+ - spec/models/partner_data_spec.rb
495
+ - spec/models/symbol_query_spec.rb
496
+ - spec/models/universal_symbol_spec.rb
497
+ - spec/models/balance_currency_spec.rb
498
+ - spec/models/model404_failed_request_response_spec.rb
499
+ - spec/models/option_leg_action_spec.rb
500
500
  - spec/spec_helper.rb