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.
- checksums.yaml +4 -4
- data/Gemfile.lock +8 -6
- data/README.md +285 -2
- data/lib/snaptrade/api/crypto_spot_trading_api.rb +698 -0
- data/lib/snaptrade/models/brokerage_authorization_type_read_only.rb +1 -1
- data/lib/snaptrade/models/brokerage_authorization_type_read_only_type.rb +37 -0
- data/lib/snaptrade/models/crypto_spot_order_preview.rb +217 -0
- data/lib/snaptrade/models/crypto_spot_order_preview_estimated_fee.rb +237 -0
- data/lib/snaptrade/models/crypto_spot_order_request_body_time_in_force.rb +39 -0
- data/lib/snaptrade/models/crypto_spot_quote.rb +257 -0
- data/lib/snaptrade/models/cryptocurrency_pair.rb +238 -0
- data/lib/snaptrade/models/order_updated_response.rb +231 -0
- data/lib/snaptrade/models/trading_crypto_spot_cancel_order_request.rb +222 -0
- data/lib/snaptrade/models/trading_crypto_spot_place_order_request.rb +321 -0
- data/lib/snaptrade/models/trading_crypto_spot_symbols200_response.rb +224 -0
- data/lib/snaptrade/models/type.rb +7 -3
- data/lib/snaptrade/version.rb +1 -1
- data/lib/snaptrade.rb +13 -0
- data/spec/api/crypto_spot_trading_api_spec.rb +107 -0
- data/spec/models/brokerage_authorization_type_read_only_type_spec.rb +23 -0
- data/spec/models/crypto_spot_order_preview_estimated_fee_spec.rb +35 -0
- data/spec/models/crypto_spot_order_preview_spec.rb +29 -0
- data/spec/models/crypto_spot_order_request_body_time_in_force_spec.rb +23 -0
- data/spec/models/crypto_spot_quote_spec.rb +47 -0
- data/spec/models/cryptocurrency_pair_spec.rb +35 -0
- data/spec/models/order_updated_response_spec.rb +35 -0
- data/spec/models/trading_crypto_spot_cancel_order_request_spec.rb +29 -0
- data/spec/models/trading_crypto_spot_place_order_request_spec.rb +77 -0
- data/spec/models/trading_crypto_spot_symbols200_response_spec.rb +29 -0
- metadata +35 -2
@@ -0,0 +1,107 @@
|
|
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 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
|
13
|
+
# Unit tests for SnapTrade::CryptoSpotTradingApi
|
14
|
+
describe 'CryptoSpotTradingApi' do
|
15
|
+
before do
|
16
|
+
# run before each test
|
17
|
+
@api_instance = SnapTrade::CryptoSpotTradingApi.new
|
18
|
+
end
|
19
|
+
|
20
|
+
after do
|
21
|
+
# run after each test
|
22
|
+
end
|
23
|
+
|
24
|
+
describe 'test an instance of CryptoSpotTradingApi' do
|
25
|
+
it 'should create an instance of CryptoSpotTradingApi' do
|
26
|
+
expect(@api_instance).to be_instance_of(SnapTrade::CryptoSpotTradingApi)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
# unit tests for crypto_spot_cancel_order
|
31
|
+
# Cancel a crypto spot order.
|
32
|
+
# Cancels a cryptocurrency spot order in the specified account.
|
33
|
+
# @param user_id
|
34
|
+
# @param user_secret
|
35
|
+
# @param account_id
|
36
|
+
# @param trading_crypto_spot_cancel_order_request
|
37
|
+
# @param [Hash] opts the optional parameters
|
38
|
+
# @return [OrderUpdatedResponse]
|
39
|
+
describe 'crypto_spot_cancel_order test' do
|
40
|
+
it 'should work' do
|
41
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
# unit tests for crypto_spot_place_order
|
46
|
+
# Place a spot order on a crypto exchange
|
47
|
+
# Places a spot cryptocurrency order in the specified account. This endpoint does not compute the impact to the account balance from the order before submitting the order to the exchange.
|
48
|
+
# @param user_id
|
49
|
+
# @param user_secret
|
50
|
+
# @param account_id
|
51
|
+
# @param trading_crypto_spot_place_order_request
|
52
|
+
# @param [Hash] opts the optional parameters
|
53
|
+
# @return [OrderUpdatedResponse]
|
54
|
+
describe 'crypto_spot_place_order test' do
|
55
|
+
it 'should work' do
|
56
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
# unit tests for crypto_spot_preview_order
|
61
|
+
# Preview a crypto spot order
|
62
|
+
# Previews a cryptocurrency spot order using the specified account.
|
63
|
+
# @param user_id
|
64
|
+
# @param user_secret
|
65
|
+
# @param account_id
|
66
|
+
# @param trading_crypto_spot_place_order_request
|
67
|
+
# @param [Hash] opts the optional parameters
|
68
|
+
# @return [CryptoSpotOrderPreview]
|
69
|
+
describe 'crypto_spot_preview_order test' do
|
70
|
+
it 'should work' do
|
71
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
# unit tests for crypto_spot_quote
|
76
|
+
# Get a cryptocurrency spot market quote
|
77
|
+
# Gets a quote for the specified account.
|
78
|
+
# @param user_id
|
79
|
+
# @param user_secret
|
80
|
+
# @param account_id
|
81
|
+
# @param base
|
82
|
+
# @param quote
|
83
|
+
# @param [Hash] opts the optional parameters
|
84
|
+
# @return [CryptoSpotQuote]
|
85
|
+
describe 'crypto_spot_quote test' do
|
86
|
+
it 'should work' do
|
87
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
# unit tests for crypto_spot_symbols
|
92
|
+
# Search crypto spot symbols
|
93
|
+
# Searches cryptocurrency spot symbols accessible to the specified account.
|
94
|
+
# @param user_id
|
95
|
+
# @param user_secret
|
96
|
+
# @param account_id
|
97
|
+
# @param [Hash] opts the optional parameters
|
98
|
+
# @option opts [String] :base
|
99
|
+
# @option opts [String] :quote
|
100
|
+
# @return [TradingCryptoSpotSymbols200Response]
|
101
|
+
describe 'crypto_spot_symbols test' do
|
102
|
+
it 'should work' do
|
103
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
end
|
@@ -0,0 +1,23 @@
|
|
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 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
# Unit tests for SnapTrade::BrokerageAuthorizationTypeReadOnlyType
|
15
|
+
describe SnapTrade::BrokerageAuthorizationTypeReadOnlyType do
|
16
|
+
let(:instance) { SnapTrade::BrokerageAuthorizationTypeReadOnlyType.new }
|
17
|
+
|
18
|
+
describe 'test an instance of BrokerageAuthorizationTypeReadOnlyType' do
|
19
|
+
it 'should create an instance of BrokerageAuthorizationTypeReadOnlyType' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::BrokerageAuthorizationTypeReadOnlyType)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,35 @@
|
|
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 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
# Unit tests for SnapTrade::CryptoSpotOrderPreviewEstimatedFee
|
15
|
+
describe SnapTrade::CryptoSpotOrderPreviewEstimatedFee do
|
16
|
+
let(:instance) { SnapTrade::CryptoSpotOrderPreviewEstimatedFee.new }
|
17
|
+
|
18
|
+
describe 'test an instance of CryptoSpotOrderPreviewEstimatedFee' do
|
19
|
+
it 'should create an instance of CryptoSpotOrderPreviewEstimatedFee' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::CryptoSpotOrderPreviewEstimatedFee)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "currency"' do
|
24
|
+
it 'should work' do
|
25
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test attribute "amount"' do
|
30
|
+
it 'should work' do
|
31
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
@@ -0,0 +1,29 @@
|
|
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 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
# Unit tests for SnapTrade::CryptoSpotOrderPreview
|
15
|
+
describe SnapTrade::CryptoSpotOrderPreview do
|
16
|
+
let(:instance) { SnapTrade::CryptoSpotOrderPreview.new }
|
17
|
+
|
18
|
+
describe 'test an instance of CryptoSpotOrderPreview' do
|
19
|
+
it 'should create an instance of CryptoSpotOrderPreview' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::CryptoSpotOrderPreview)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "estimated_fee"' do
|
24
|
+
it 'should work' do
|
25
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
@@ -0,0 +1,23 @@
|
|
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 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
# Unit tests for SnapTrade::CryptoSpotOrderRequestBodyTimeInForce
|
15
|
+
describe SnapTrade::CryptoSpotOrderRequestBodyTimeInForce do
|
16
|
+
let(:instance) { SnapTrade::CryptoSpotOrderRequestBodyTimeInForce.new }
|
17
|
+
|
18
|
+
describe 'test an instance of CryptoSpotOrderRequestBodyTimeInForce' do
|
19
|
+
it 'should create an instance of CryptoSpotOrderRequestBodyTimeInForce' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::CryptoSpotOrderRequestBodyTimeInForce)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,47 @@
|
|
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 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
# Unit tests for SnapTrade::CryptoSpotQuote
|
15
|
+
describe SnapTrade::CryptoSpotQuote do
|
16
|
+
let(:instance) { SnapTrade::CryptoSpotQuote.new }
|
17
|
+
|
18
|
+
describe 'test an instance of CryptoSpotQuote' do
|
19
|
+
it 'should create an instance of CryptoSpotQuote' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::CryptoSpotQuote)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "bid"' do
|
24
|
+
it 'should work' do
|
25
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test attribute "ask"' do
|
30
|
+
it 'should work' do
|
31
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
describe 'test attribute "mid"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "timestamp"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
@@ -0,0 +1,35 @@
|
|
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 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
# Unit tests for SnapTrade::CryptocurrencyPair
|
15
|
+
describe SnapTrade::CryptocurrencyPair do
|
16
|
+
let(:instance) { SnapTrade::CryptocurrencyPair.new }
|
17
|
+
|
18
|
+
describe 'test an instance of CryptocurrencyPair' do
|
19
|
+
it 'should create an instance of CryptocurrencyPair' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::CryptocurrencyPair)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "base"' do
|
24
|
+
it 'should work' do
|
25
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test attribute "quote"' do
|
30
|
+
it 'should work' do
|
31
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
@@ -0,0 +1,35 @@
|
|
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 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
# Unit tests for SnapTrade::OrderUpdatedResponse
|
15
|
+
describe SnapTrade::OrderUpdatedResponse do
|
16
|
+
let(:instance) { SnapTrade::OrderUpdatedResponse.new }
|
17
|
+
|
18
|
+
describe 'test an instance of OrderUpdatedResponse' do
|
19
|
+
it 'should create an instance of OrderUpdatedResponse' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::OrderUpdatedResponse)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "brokerage_order_id"' do
|
24
|
+
it 'should work' do
|
25
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test attribute "order"' do
|
30
|
+
it 'should work' do
|
31
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
@@ -0,0 +1,29 @@
|
|
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 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
# Unit tests for SnapTrade::TradingCryptoSpotCancelOrderRequest
|
15
|
+
describe SnapTrade::TradingCryptoSpotCancelOrderRequest do
|
16
|
+
let(:instance) { SnapTrade::TradingCryptoSpotCancelOrderRequest.new }
|
17
|
+
|
18
|
+
describe 'test an instance of TradingCryptoSpotCancelOrderRequest' do
|
19
|
+
it 'should create an instance of TradingCryptoSpotCancelOrderRequest' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::TradingCryptoSpotCancelOrderRequest)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "brokerage_order_id"' do
|
24
|
+
it 'should work' do
|
25
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
@@ -0,0 +1,77 @@
|
|
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 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
# Unit tests for SnapTrade::TradingCryptoSpotPlaceOrderRequest
|
15
|
+
describe SnapTrade::TradingCryptoSpotPlaceOrderRequest do
|
16
|
+
let(:instance) { SnapTrade::TradingCryptoSpotPlaceOrderRequest.new }
|
17
|
+
|
18
|
+
describe 'test an instance of TradingCryptoSpotPlaceOrderRequest' do
|
19
|
+
it 'should create an instance of TradingCryptoSpotPlaceOrderRequest' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::TradingCryptoSpotPlaceOrderRequest)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "symbol"' do
|
24
|
+
it 'should work' do
|
25
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test attribute "side"' do
|
30
|
+
it 'should work' do
|
31
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
describe 'test attribute "type"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "time_in_force"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "amount"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "limit_price"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe 'test attribute "stop_price"' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
describe 'test attribute "post_only"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
describe 'test attribute "expiration_date"' do
|
72
|
+
it 'should work' do
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
end
|
@@ -0,0 +1,29 @@
|
|
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 'spec_helper'
|
11
|
+
require 'json'
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
# Unit tests for SnapTrade::TradingCryptoSpotSymbols200Response
|
15
|
+
describe SnapTrade::TradingCryptoSpotSymbols200Response do
|
16
|
+
let(:instance) { SnapTrade::TradingCryptoSpotSymbols200Response.new }
|
17
|
+
|
18
|
+
describe 'test an instance of TradingCryptoSpotSymbols200Response' do
|
19
|
+
it 'should create an instance of TradingCryptoSpotSymbols200Response' do
|
20
|
+
expect(instance).to be_instance_of(SnapTrade::TradingCryptoSpotSymbols200Response)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
describe 'test attribute "items"' do
|
24
|
+
it 'should work' do
|
25
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
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.
|
4
|
+
version: 2.0.85
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- SnapTrade
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -87,6 +87,7 @@ files:
|
|
87
87
|
- lib/snaptrade/api/api_status_api.rb
|
88
88
|
- lib/snaptrade/api/authentication_api.rb
|
89
89
|
- lib/snaptrade/api/connections_api.rb
|
90
|
+
- lib/snaptrade/api/crypto_spot_trading_api.rb
|
90
91
|
- lib/snaptrade/api/options_api.rb
|
91
92
|
- lib/snaptrade/api/reference_data_api.rb
|
92
93
|
- lib/snaptrade/api/trading_api.rb
|
@@ -123,11 +124,17 @@ files:
|
|
123
124
|
- lib/snaptrade/models/brokerage_authorization_refresh_confirmation.rb
|
124
125
|
- lib/snaptrade/models/brokerage_authorization_type_read_only.rb
|
125
126
|
- lib/snaptrade/models/brokerage_authorization_type_read_only_brokerage.rb
|
127
|
+
- lib/snaptrade/models/brokerage_authorization_type_read_only_type.rb
|
126
128
|
- lib/snaptrade/models/brokerage_type.rb
|
127
129
|
- lib/snaptrade/models/child_brokerage_order_ids.rb
|
128
130
|
- lib/snaptrade/models/connection_portal_version.rb
|
129
131
|
- lib/snaptrade/models/connection_type.rb
|
130
132
|
- lib/snaptrade/models/connections_session_events200_response_inner.rb
|
133
|
+
- lib/snaptrade/models/crypto_spot_order_preview.rb
|
134
|
+
- lib/snaptrade/models/crypto_spot_order_preview_estimated_fee.rb
|
135
|
+
- lib/snaptrade/models/crypto_spot_order_request_body_time_in_force.rb
|
136
|
+
- lib/snaptrade/models/crypto_spot_quote.rb
|
137
|
+
- lib/snaptrade/models/cryptocurrency_pair.rb
|
131
138
|
- lib/snaptrade/models/currency.rb
|
132
139
|
- lib/snaptrade/models/delete_user_response.rb
|
133
140
|
- lib/snaptrade/models/dividend_at_date.rb
|
@@ -175,6 +182,7 @@ files:
|
|
175
182
|
- lib/snaptrade/models/options_position_currency.rb
|
176
183
|
- lib/snaptrade/models/options_symbol.rb
|
177
184
|
- lib/snaptrade/models/order_type_strict.rb
|
185
|
+
- lib/snaptrade/models/order_updated_response.rb
|
178
186
|
- lib/snaptrade/models/paginated_universal_activity.rb
|
179
187
|
- lib/snaptrade/models/pagination_details.rb
|
180
188
|
- lib/snaptrade/models/partner_data.rb
|
@@ -210,6 +218,9 @@ files:
|
|
210
218
|
- lib/snaptrade/models/time_in_force_strict.rb
|
211
219
|
- lib/snaptrade/models/timeframe.rb
|
212
220
|
- lib/snaptrade/models/trading_cancel_user_account_order_request.rb
|
221
|
+
- lib/snaptrade/models/trading_crypto_spot_cancel_order_request.rb
|
222
|
+
- lib/snaptrade/models/trading_crypto_spot_place_order_request.rb
|
223
|
+
- lib/snaptrade/models/trading_crypto_spot_symbols200_response.rb
|
213
224
|
- lib/snaptrade/models/transactions_status.rb
|
214
225
|
- lib/snaptrade/models/type.rb
|
215
226
|
- lib/snaptrade/models/underlying_symbol.rb
|
@@ -226,6 +237,7 @@ files:
|
|
226
237
|
- spec/api/api_status_api_spec.rb
|
227
238
|
- spec/api/authentication_api_spec.rb
|
228
239
|
- spec/api/connections_api_spec.rb
|
240
|
+
- spec/api/crypto_spot_trading_api_spec.rb
|
229
241
|
- spec/api/options_api_spec.rb
|
230
242
|
- spec/api/reference_data_api_spec.rb
|
231
243
|
- spec/api/trading_api_spec.rb
|
@@ -260,12 +272,18 @@ files:
|
|
260
272
|
- spec/models/brokerage_authorization_spec.rb
|
261
273
|
- spec/models/brokerage_authorization_type_read_only_brokerage_spec.rb
|
262
274
|
- spec/models/brokerage_authorization_type_read_only_spec.rb
|
275
|
+
- spec/models/brokerage_authorization_type_read_only_type_spec.rb
|
263
276
|
- spec/models/brokerage_spec.rb
|
264
277
|
- spec/models/brokerage_type_spec.rb
|
265
278
|
- spec/models/child_brokerage_order_ids_spec.rb
|
266
279
|
- spec/models/connection_portal_version_spec.rb
|
267
280
|
- spec/models/connection_type_spec.rb
|
268
281
|
- spec/models/connections_session_events200_response_inner_spec.rb
|
282
|
+
- spec/models/crypto_spot_order_preview_estimated_fee_spec.rb
|
283
|
+
- spec/models/crypto_spot_order_preview_spec.rb
|
284
|
+
- spec/models/crypto_spot_order_request_body_time_in_force_spec.rb
|
285
|
+
- spec/models/crypto_spot_quote_spec.rb
|
286
|
+
- spec/models/cryptocurrency_pair_spec.rb
|
269
287
|
- spec/models/currency_spec.rb
|
270
288
|
- spec/models/delete_user_response_spec.rb
|
271
289
|
- spec/models/dividend_at_date_spec.rb
|
@@ -313,6 +331,7 @@ files:
|
|
313
331
|
- spec/models/options_position_spec.rb
|
314
332
|
- spec/models/options_symbol_spec.rb
|
315
333
|
- spec/models/order_type_strict_spec.rb
|
334
|
+
- spec/models/order_updated_response_spec.rb
|
316
335
|
- spec/models/paginated_universal_activity_spec.rb
|
317
336
|
- spec/models/pagination_details_spec.rb
|
318
337
|
- spec/models/partner_data_spec.rb
|
@@ -348,6 +367,9 @@ files:
|
|
348
367
|
- spec/models/time_in_force_strict_spec.rb
|
349
368
|
- spec/models/timeframe_spec.rb
|
350
369
|
- spec/models/trading_cancel_user_account_order_request_spec.rb
|
370
|
+
- spec/models/trading_crypto_spot_cancel_order_request_spec.rb
|
371
|
+
- spec/models/trading_crypto_spot_place_order_request_spec.rb
|
372
|
+
- spec/models/trading_crypto_spot_symbols200_response_spec.rb
|
351
373
|
- spec/models/transactions_status_spec.rb
|
352
374
|
- spec/models/type_spec.rb
|
353
375
|
- spec/models/underlying_symbol_exchange_spec.rb
|
@@ -387,6 +409,7 @@ summary: SnapTrade Ruby Gem
|
|
387
409
|
test_files:
|
388
410
|
- spec/api/options_api_spec.rb
|
389
411
|
- spec/api/transactions_and_reporting_api_spec.rb
|
412
|
+
- spec/api/crypto_spot_trading_api_spec.rb
|
390
413
|
- spec/api/account_information_api_spec.rb
|
391
414
|
- spec/api/connections_api_spec.rb
|
392
415
|
- spec/api/api_status_api_spec.rb
|
@@ -415,9 +438,11 @@ test_files:
|
|
415
438
|
- spec/models/options_position_currency_spec.rb
|
416
439
|
- spec/models/manual_trade_and_impact_spec.rb
|
417
440
|
- spec/models/validated_trade_body_spec.rb
|
441
|
+
- spec/models/trading_crypto_spot_symbols200_response_spec.rb
|
418
442
|
- spec/models/exchange_rate_pairs_spec.rb
|
419
443
|
- spec/models/strategy_order_record_spec.rb
|
420
444
|
- spec/models/option_chain_inner_chain_per_root_inner_spec.rb
|
445
|
+
- spec/models/crypto_spot_order_request_body_time_in_force_spec.rb
|
421
446
|
- spec/models/model425_failed_request_response_spec.rb
|
422
447
|
- spec/models/underlying_symbol_exchange_spec.rb
|
423
448
|
- spec/models/symbol_exchange_spec.rb
|
@@ -454,6 +479,7 @@ test_files:
|
|
454
479
|
- spec/models/past_value_spec.rb
|
455
480
|
- spec/models/account_order_record_universal_symbol_spec.rb
|
456
481
|
- spec/models/us_exchange_spec.rb
|
482
|
+
- spec/models/cryptocurrency_pair_spec.rb
|
457
483
|
- spec/models/model500_unexpected_exception_response_spec.rb
|
458
484
|
- spec/models/session_event_spec.rb
|
459
485
|
- spec/models/account_holdings_spec.rb
|
@@ -462,12 +488,16 @@ test_files:
|
|
462
488
|
- spec/models/universal_activity_spec.rb
|
463
489
|
- spec/models/account_order_record_spec.rb
|
464
490
|
- spec/models/symbol_figi_instrument_spec.rb
|
491
|
+
- spec/models/order_updated_response_spec.rb
|
465
492
|
- spec/models/strategy_quotes_spec.rb
|
466
493
|
- spec/models/monthly_dividends_spec.rb
|
494
|
+
- spec/models/trading_crypto_spot_place_order_request_spec.rb
|
467
495
|
- spec/models/snap_trade_register_user_request_body_spec.rb
|
496
|
+
- spec/models/crypto_spot_order_preview_spec.rb
|
468
497
|
- spec/models/status_spec.rb
|
469
498
|
- spec/models/account_sync_status_spec.rb
|
470
499
|
- spec/models/account_balance_total_spec.rb
|
500
|
+
- spec/models/trading_crypto_spot_cancel_order_request_spec.rb
|
471
501
|
- spec/models/take_profit_spec.rb
|
472
502
|
- spec/models/balance_currency_spec.rb
|
473
503
|
- spec/models/option_type_spec.rb
|
@@ -504,10 +534,12 @@ test_files:
|
|
504
534
|
- spec/models/position_spec.rb
|
505
535
|
- spec/models/holdings_status_spec.rb
|
506
536
|
- spec/models/recent_orders_response_spec.rb
|
537
|
+
- spec/models/crypto_spot_order_preview_estimated_fee_spec.rb
|
507
538
|
- spec/models/encrypted_response_encrypted_message_data_spec.rb
|
508
539
|
- spec/models/manual_trade_form_notional_value_spec.rb
|
509
540
|
- spec/models/dividend_at_date_spec.rb
|
510
541
|
- spec/models/option_chain_inner_spec.rb
|
542
|
+
- spec/models/brokerage_authorization_type_read_only_type_spec.rb
|
511
543
|
- spec/models/connection_portal_version_spec.rb
|
512
544
|
- spec/models/figi_instrument_spec.rb
|
513
545
|
- spec/models/order_type_strict_spec.rb
|
@@ -520,5 +552,6 @@ test_files:
|
|
520
552
|
- spec/models/manual_trade_spec.rb
|
521
553
|
- spec/models/brokerage_authorization_type_read_only_spec.rb
|
522
554
|
- spec/models/option_brokerage_symbol_spec.rb
|
555
|
+
- spec/models/crypto_spot_quote_spec.rb
|
523
556
|
- spec/models/manual_trade_symbol_spec.rb
|
524
557
|
- spec/spec_helper.rb
|