snaptrade 2.0.87 → 2.0.89

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 (29) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/README.md +280 -285
  4. data/lib/snaptrade/api/trading_api.rb +653 -0
  5. data/lib/snaptrade/models/cryptocurrency_pair.rb +12 -2
  6. data/lib/snaptrade/models/{crypto_spot_quote.rb → cryptocurrency_pair_quote.rb} +3 -3
  7. data/lib/snaptrade/models/{crypto_spot_order_preview.rb → simple_order_preview.rb} +5 -5
  8. data/lib/snaptrade/models/{crypto_spot_order_preview_estimated_fee.rb → simple_order_preview_estimated_fee.rb} +3 -3
  9. data/lib/snaptrade/models/{crypto_spot_order_request_body_time_in_force.rb → simple_order_request_body_time_in_force.rb} +3 -3
  10. data/lib/snaptrade/models/trading_instrument.rb +12 -2
  11. data/lib/snaptrade/models/{trading_crypto_spot_place_order_request.rb → trading_place_simple_order_request.rb} +14 -14
  12. data/lib/snaptrade/models/{trading_crypto_spot_symbols200_response.rb → trading_search_cryptocurrency_pair_instruments200_response.rb} +4 -4
  13. data/lib/snaptrade/version.rb +1 -1
  14. data/lib/snaptrade.rb +6 -10
  15. data/spec/api/trading_api_spec.rb +76 -0
  16. data/spec/models/{crypto_spot_quote_spec.rb → cryptocurrency_pair_quote_spec.rb} +6 -6
  17. data/spec/models/cryptocurrency_pair_spec.rb +6 -0
  18. data/spec/models/{crypto_spot_order_preview_estimated_fee_spec.rb → simple_order_preview_estimated_fee_spec.rb} +6 -6
  19. data/spec/models/{crypto_spot_order_preview_spec.rb → simple_order_preview_spec.rb} +6 -6
  20. data/spec/models/simple_order_request_body_time_in_force_spec.rb +23 -0
  21. data/spec/models/{trading_crypto_spot_place_order_request_spec.rb → trading_place_simple_order_request_spec.rb} +7 -7
  22. data/spec/models/trading_search_cryptocurrency_pair_instruments200_response_spec.rb +29 -0
  23. metadata +20 -26
  24. data/lib/snaptrade/api/crypto_spot_trading_api.rb +0 -698
  25. data/lib/snaptrade/models/trading_crypto_spot_cancel_order_request.rb +0 -222
  26. data/spec/api/crypto_spot_trading_api_spec.rb +0 -107
  27. data/spec/models/crypto_spot_order_request_body_time_in_force_spec.rb +0 -23
  28. data/spec/models/trading_crypto_spot_cancel_order_request_spec.rb +0 -29
  29. data/spec/models/trading_crypto_spot_symbols200_response_spec.rb +0 -29
@@ -1,222 +0,0 @@
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 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
17
-
18
- # Attribute mapping from ruby-style variable name to JSON key.
19
- def self.attribute_map
20
- {
21
- :'brokerage_order_id' => :'brokerage_order_id'
22
- }
23
- end
24
-
25
- # Returns all the JSON keys this model knows about
26
- def self.acceptable_attributes
27
- attribute_map.values
28
- end
29
-
30
- # Attribute type mapping.
31
- def self.openapi_types
32
- {
33
- :'brokerage_order_id' => :'String'
34
- }
35
- end
36
-
37
- # List of attributes with nullable: true
38
- def self.openapi_nullable
39
- Set.new([
40
- ])
41
- end
42
-
43
- # Initializes the object
44
- # @param [Hash] attributes Model attributes in the form of hash
45
- def initialize(attributes = {})
46
- if (!attributes.is_a?(Hash))
47
- fail ArgumentError, "The input argument (attributes) must be a hash in `SnapTrade::TradingCryptoSpotCancelOrderRequest` initialize method"
48
- end
49
-
50
- # check to see if the attribute exists and convert string to symbol for hash key
51
- attributes = attributes.each_with_object({}) { |(k, v), h|
52
- if (!self.class.attribute_map.key?(k.to_sym))
53
- fail ArgumentError, "`#{k}` is not a valid attribute in `SnapTrade::TradingCryptoSpotCancelOrderRequest`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
54
- end
55
- h[k.to_sym] = v
56
- }
57
-
58
- if attributes.key?(:'brokerage_order_id')
59
- self.brokerage_order_id = attributes[:'brokerage_order_id']
60
- end
61
- end
62
-
63
- # Show invalid properties with the reasons. Usually used together with valid?
64
- # @return Array for valid properties with the reasons
65
- def list_invalid_properties
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
-
71
- invalid_properties
72
- end
73
-
74
- # Check to see if the all the properties in the model are valid
75
- # @return true if the model is valid
76
- def valid?
77
- return false if @brokerage_order_id.nil?
78
- true
79
- end
80
-
81
- # Checks equality by comparing each attribute.
82
- # @param [Object] Object to be compared
83
- def ==(o)
84
- return true if self.equal?(o)
85
- self.class == o.class &&
86
- brokerage_order_id == o.brokerage_order_id
87
- end
88
-
89
- # @see the `==` method
90
- # @param [Object] Object to be compared
91
- def eql?(o)
92
- self == o
93
- end
94
-
95
- # Calculates hash code according to all attributes.
96
- # @return [Integer] Hash code
97
- def hash
98
- [brokerage_order_id].hash
99
- end
100
-
101
- # Builds the object from hash
102
- # @param [Hash] attributes Model attributes in the form of hash
103
- # @return [Object] Returns the model itself
104
- def self.build_from_hash(attributes)
105
- new.build_from_hash(attributes)
106
- end
107
-
108
- # Builds the object from hash
109
- # @param [Hash] attributes Model attributes in the form of hash
110
- # @return [Object] Returns the model itself
111
- def build_from_hash(attributes)
112
- return nil unless attributes.is_a?(Hash)
113
- attributes = attributes.transform_keys(&:to_sym)
114
- self.class.openapi_types.each_pair do |key, type|
115
- if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
116
- self.send("#{key}=", nil)
117
- elsif type =~ /\AArray<(.*)>/i
118
- # check to ensure the input is an array given that the attribute
119
- # is documented as an array but the input is not
120
- if attributes[self.class.attribute_map[key]].is_a?(Array)
121
- self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
122
- end
123
- elsif !attributes[self.class.attribute_map[key]].nil?
124
- self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
125
- end
126
- end
127
-
128
- self
129
- end
130
-
131
- # Deserializes the data based on type
132
- # @param string type Data type
133
- # @param string value Value to be deserialized
134
- # @return [Object] Deserialized data
135
- def _deserialize(type, value)
136
- case type.to_sym
137
- when :Time
138
- Time.parse(value)
139
- when :Date
140
- Date.parse(value)
141
- when :String
142
- value.to_s
143
- when :Integer
144
- value.to_i
145
- when :Float
146
- value.to_f
147
- when :Boolean
148
- if value.to_s =~ /\A(true|t|yes|y|1)\z/i
149
- true
150
- else
151
- false
152
- end
153
- when :Object
154
- # generic object (usually a Hash), return directly
155
- value
156
- when /\AArray<(?<inner_type>.+)>\z/
157
- inner_type = Regexp.last_match[:inner_type]
158
- value.map { |v| _deserialize(inner_type, v) }
159
- when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
160
- k_type = Regexp.last_match[:k_type]
161
- v_type = Regexp.last_match[:v_type]
162
- {}.tap do |hash|
163
- value.each do |k, v|
164
- hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
165
- end
166
- end
167
- else # model
168
- # models (e.g. Pet) or oneOf
169
- klass = SnapTrade.const_get(type)
170
- klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
171
- end
172
- end
173
-
174
- # Returns the string representation of the object
175
- # @return [String] String presentation of the object
176
- def to_s
177
- to_hash.to_s
178
- end
179
-
180
- # to_body is an alias to to_hash (backward compatibility)
181
- # @return [Hash] Returns the object in the form of hash
182
- def to_body
183
- to_hash
184
- end
185
-
186
- # Returns the object in the form of hash
187
- # @return [Hash] Returns the object in the form of hash
188
- def to_hash
189
- hash = {}
190
- self.class.attribute_map.each_pair do |attr, param|
191
- value = self.send(attr)
192
- if value.nil?
193
- is_nullable = self.class.openapi_nullable.include?(attr)
194
- next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
195
- end
196
-
197
- hash[param] = _to_hash(value)
198
- end
199
- hash
200
- end
201
-
202
- # Outputs non-array value in the form of hash
203
- # For object, use to_hash. Otherwise, just return the value
204
- # @param [Object] value Any valid value
205
- # @return [Hash] Returns the value in the form of hash
206
- def _to_hash(value)
207
- if value.is_a?(Array)
208
- value.compact.map { |v| _to_hash(v) }
209
- elsif value.is_a?(Hash)
210
- {}.tap do |hash|
211
- value.each { |k, v| hash[k] = _to_hash(v) }
212
- end
213
- elsif value.respond_to? :to_hash
214
- value.to_hash
215
- else
216
- value
217
- end
218
- end
219
-
220
- end
221
-
222
- end
@@ -1,107 +0,0 @@
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
@@ -1,23 +0,0 @@
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
@@ -1,29 +0,0 @@
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
@@ -1,29 +0,0 @@
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