snaptrade 2.0.82 → 2.0.84

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +5 -5
  3. data/README.md +375 -23
  4. data/lib/snaptrade/api/crypto_spot_trading_api.rb +698 -0
  5. data/lib/snaptrade/api/trading_api.rb +158 -16
  6. data/lib/snaptrade/models/account_order_record.rb +14 -4
  7. data/lib/snaptrade/models/account_order_record_child_brokerage_order_ids.rb +234 -0
  8. data/lib/snaptrade/models/brokerage_authorization_type_read_only.rb +1 -1
  9. data/lib/snaptrade/models/{order_class.rb → brokerage_authorization_type_read_only_type.rb} +6 -6
  10. data/lib/snaptrade/models/child_brokerage_order_ids.rb +227 -0
  11. data/lib/snaptrade/models/{manual_trade_form_with_options_take_profit.rb → crypto_spot_order_preview.rb} +11 -17
  12. data/lib/snaptrade/models/crypto_spot_order_preview_estimated_fee.rb +237 -0
  13. data/lib/snaptrade/models/crypto_spot_order_request_body_time_in_force.rb +39 -0
  14. data/lib/snaptrade/models/crypto_spot_quote.rb +257 -0
  15. data/lib/snaptrade/models/cryptocurrency_pair.rb +238 -0
  16. data/lib/snaptrade/models/manual_trade_form_bracket.rb +343 -0
  17. data/lib/snaptrade/models/manual_trade_form_with_options.rb +6 -37
  18. data/lib/snaptrade/models/{manual_trade_form_with_options_stop_loss.rb → trading_crypto_spot_cancel_order_request.rb} +16 -27
  19. data/lib/snaptrade/models/trading_crypto_spot_place_order_request.rb +321 -0
  20. data/lib/snaptrade/models/trading_crypto_spot_symbols200_response.rb +224 -0
  21. data/lib/snaptrade/models/type.rb +7 -3
  22. data/lib/snaptrade/version.rb +1 -1
  23. data/lib/snaptrade.rb +15 -3
  24. data/spec/api/crypto_spot_trading_api_spec.rb +107 -0
  25. data/spec/api/trading_api_spec.rb +14 -0
  26. data/spec/models/account_order_record_child_brokerage_order_ids_spec.rb +35 -0
  27. data/spec/models/account_order_record_spec.rb +6 -0
  28. data/spec/models/brokerage_authorization_type_read_only_type_spec.rb +23 -0
  29. data/spec/models/child_brokerage_order_ids_spec.rb +35 -0
  30. data/spec/models/{manual_trade_form_with_options_stop_loss_spec.rb → crypto_spot_order_preview_estimated_fee_spec.rb} +8 -8
  31. data/spec/models/crypto_spot_order_preview_spec.rb +29 -0
  32. data/spec/models/crypto_spot_order_request_body_time_in_force_spec.rb +23 -0
  33. data/spec/models/crypto_spot_quote_spec.rb +47 -0
  34. data/spec/models/cryptocurrency_pair_spec.rb +35 -0
  35. data/spec/models/manual_trade_form_bracket_spec.rb +83 -0
  36. data/spec/models/manual_trade_form_with_options_spec.rb +0 -18
  37. data/spec/models/trading_crypto_spot_cancel_order_request_spec.rb +29 -0
  38. data/spec/models/trading_crypto_spot_place_order_request_spec.rb +77 -0
  39. data/spec/models/trading_crypto_spot_symbols200_response_spec.rb +29 -0
  40. metadata +41 -11
  41. data/spec/models/manual_trade_form_with_options_take_profit_spec.rb +0 -29
  42. data/spec/models/order_class_spec.rb +0 -23
@@ -0,0 +1,227 @@
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 ChildBrokerageOrderIDs
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
+ # Initializes the object
49
+ # @param [Hash] attributes Model attributes in the form of hash
50
+ def initialize(attributes = {})
51
+ if (!attributes.is_a?(Hash))
52
+ fail ArgumentError, "The input argument (attributes) must be a hash in `SnapTrade::ChildBrokerageOrderIDs` initialize method"
53
+ end
54
+
55
+ # check to see if the attribute exists and convert string to symbol for hash key
56
+ attributes = attributes.each_with_object({}) { |(k, v), h|
57
+ if (!self.class.attribute_map.key?(k.to_sym))
58
+ fail ArgumentError, "`#{k}` is not a valid attribute in `SnapTrade::ChildBrokerageOrderIDs`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
59
+ end
60
+ h[k.to_sym] = v
61
+ }
62
+
63
+ if attributes.key?(:'take_profit_order_id')
64
+ self.take_profit_order_id = attributes[:'take_profit_order_id']
65
+ end
66
+
67
+ if attributes.key?(:'stop_loss_order_id')
68
+ self.stop_loss_order_id = attributes[:'stop_loss_order_id']
69
+ end
70
+ end
71
+
72
+ # Show invalid properties with the reasons. Usually used together with valid?
73
+ # @return Array for valid properties with the reasons
74
+ def list_invalid_properties
75
+ invalid_properties = Array.new
76
+ invalid_properties
77
+ end
78
+
79
+ # Check to see if the all the properties in the model are valid
80
+ # @return true if the model is valid
81
+ def valid?
82
+ true
83
+ end
84
+
85
+ # Checks equality by comparing each attribute.
86
+ # @param [Object] Object to be compared
87
+ def ==(o)
88
+ return true if self.equal?(o)
89
+ self.class == o.class &&
90
+ take_profit_order_id == o.take_profit_order_id &&
91
+ stop_loss_order_id == o.stop_loss_order_id
92
+ end
93
+
94
+ # @see the `==` method
95
+ # @param [Object] Object to be compared
96
+ def eql?(o)
97
+ self == o
98
+ end
99
+
100
+ # Calculates hash code according to all attributes.
101
+ # @return [Integer] Hash code
102
+ def hash
103
+ [take_profit_order_id, stop_loss_order_id].hash
104
+ end
105
+
106
+ # Builds the object from hash
107
+ # @param [Hash] attributes Model attributes in the form of hash
108
+ # @return [Object] Returns the model itself
109
+ def self.build_from_hash(attributes)
110
+ new.build_from_hash(attributes)
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 build_from_hash(attributes)
117
+ return nil unless attributes.is_a?(Hash)
118
+ attributes = attributes.transform_keys(&:to_sym)
119
+ self.class.openapi_types.each_pair do |key, type|
120
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
121
+ self.send("#{key}=", nil)
122
+ elsif type =~ /\AArray<(.*)>/i
123
+ # check to ensure the input is an array given that the attribute
124
+ # is documented as an array but the input is not
125
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
126
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
127
+ end
128
+ elsif !attributes[self.class.attribute_map[key]].nil?
129
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
130
+ end
131
+ end
132
+
133
+ self
134
+ end
135
+
136
+ # Deserializes the data based on type
137
+ # @param string type Data type
138
+ # @param string value Value to be deserialized
139
+ # @return [Object] Deserialized data
140
+ def _deserialize(type, value)
141
+ case type.to_sym
142
+ when :Time
143
+ Time.parse(value)
144
+ when :Date
145
+ Date.parse(value)
146
+ when :String
147
+ value.to_s
148
+ when :Integer
149
+ value.to_i
150
+ when :Float
151
+ value.to_f
152
+ when :Boolean
153
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
154
+ true
155
+ else
156
+ false
157
+ end
158
+ when :Object
159
+ # generic object (usually a Hash), return directly
160
+ value
161
+ when /\AArray<(?<inner_type>.+)>\z/
162
+ inner_type = Regexp.last_match[:inner_type]
163
+ value.map { |v| _deserialize(inner_type, v) }
164
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
165
+ k_type = Regexp.last_match[:k_type]
166
+ v_type = Regexp.last_match[:v_type]
167
+ {}.tap do |hash|
168
+ value.each do |k, v|
169
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
170
+ end
171
+ end
172
+ else # model
173
+ # models (e.g. Pet) or oneOf
174
+ klass = SnapTrade.const_get(type)
175
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
176
+ end
177
+ end
178
+
179
+ # Returns the string representation of the object
180
+ # @return [String] String presentation of the object
181
+ def to_s
182
+ to_hash.to_s
183
+ end
184
+
185
+ # to_body is an alias to to_hash (backward compatibility)
186
+ # @return [Hash] Returns the object in the form of hash
187
+ def to_body
188
+ to_hash
189
+ end
190
+
191
+ # Returns the object in the form of hash
192
+ # @return [Hash] Returns the object in the form of hash
193
+ def to_hash
194
+ hash = {}
195
+ self.class.attribute_map.each_pair do |attr, param|
196
+ value = self.send(attr)
197
+ if value.nil?
198
+ is_nullable = self.class.openapi_nullable.include?(attr)
199
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
200
+ end
201
+
202
+ hash[param] = _to_hash(value)
203
+ end
204
+ hash
205
+ end
206
+
207
+ # Outputs non-array value in the form of hash
208
+ # For object, use to_hash. Otherwise, just return the value
209
+ # @param [Object] value Any valid value
210
+ # @return [Hash] Returns the value in the form of hash
211
+ def _to_hash(value)
212
+ if value.is_a?(Array)
213
+ value.compact.map { |v| _to_hash(v) }
214
+ elsif value.is_a?(Hash)
215
+ {}.tap do |hash|
216
+ value.each { |k, v| hash[k] = _to_hash(v) }
217
+ end
218
+ elsif value.respond_to? :to_hash
219
+ value.to_hash
220
+ else
221
+ value
222
+ end
223
+ end
224
+
225
+ end
226
+
227
+ end
@@ -11,13 +11,14 @@ require 'date'
11
11
  require 'time'
12
12
 
13
13
  module SnapTrade
14
- class ManualTradeFormWithOptionsTakeProfit
15
- attr_accessor :limit_price
14
+ # Preview of a cryptocurrency spot order.
15
+ class CryptoSpotOrderPreview
16
+ attr_accessor :estimated_fee
16
17
 
17
18
  # Attribute mapping from ruby-style variable name to JSON key.
18
19
  def self.attribute_map
19
20
  {
20
- :'limit_price' => :'limit_price'
21
+ :'estimated_fee' => :'estimated_fee'
21
22
  }
22
23
  end
23
24
 
@@ -29,7 +30,7 @@ module SnapTrade
29
30
  # Attribute type mapping.
30
31
  def self.openapi_types
31
32
  {
32
- :'limit_price' => :'String'
33
+ :'estimated_fee' => :'CryptoSpotOrderPreviewEstimatedFee'
33
34
  }
34
35
  end
35
36
 
@@ -39,30 +40,23 @@ module SnapTrade
39
40
  ])
40
41
  end
41
42
 
42
- # List of class defined in allOf (OpenAPI v3)
43
- def self.openapi_all_of
44
- [
45
- :'TakeProfit'
46
- ]
47
- end
48
-
49
43
  # Initializes the object
50
44
  # @param [Hash] attributes Model attributes in the form of hash
51
45
  def initialize(attributes = {})
52
46
  if (!attributes.is_a?(Hash))
53
- fail ArgumentError, "The input argument (attributes) must be a hash in `SnapTrade::ManualTradeFormWithOptionsTakeProfit` initialize method"
47
+ fail ArgumentError, "The input argument (attributes) must be a hash in `SnapTrade::CryptoSpotOrderPreview` initialize method"
54
48
  end
55
49
 
56
50
  # check to see if the attribute exists and convert string to symbol for hash key
57
51
  attributes = attributes.each_with_object({}) { |(k, v), h|
58
52
  if (!self.class.attribute_map.key?(k.to_sym))
59
- fail ArgumentError, "`#{k}` is not a valid attribute in `SnapTrade::ManualTradeFormWithOptionsTakeProfit`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
53
+ fail ArgumentError, "`#{k}` is not a valid attribute in `SnapTrade::CryptoSpotOrderPreview`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
60
54
  end
61
55
  h[k.to_sym] = v
62
56
  }
63
57
 
64
- if attributes.key?(:'limit_price')
65
- self.limit_price = attributes[:'limit_price']
58
+ if attributes.key?(:'estimated_fee')
59
+ self.estimated_fee = attributes[:'estimated_fee']
66
60
  end
67
61
  end
68
62
 
@@ -84,7 +78,7 @@ module SnapTrade
84
78
  def ==(o)
85
79
  return true if self.equal?(o)
86
80
  self.class == o.class &&
87
- limit_price == o.limit_price
81
+ estimated_fee == o.estimated_fee
88
82
  end
89
83
 
90
84
  # @see the `==` method
@@ -96,7 +90,7 @@ module SnapTrade
96
90
  # Calculates hash code according to all attributes.
97
91
  # @return [Integer] Hash code
98
92
  def hash
99
- [limit_price].hash
93
+ [estimated_fee].hash
100
94
  end
101
95
 
102
96
  # Builds the object from hash
@@ -0,0 +1,237 @@
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
+ # The estimated order fee.
15
+ class CryptoSpotOrderPreviewEstimatedFee
16
+ # Symbol to identify a cryptocurrency or fiat currency on a crypto exchange. Fiat currencies symbols are ISO-4217 codes.
17
+ attr_accessor :currency
18
+
19
+ attr_accessor :amount
20
+
21
+ # Attribute mapping from ruby-style variable name to JSON key.
22
+ def self.attribute_map
23
+ {
24
+ :'currency' => :'currency',
25
+ :'amount' => :'amount'
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
+ :'currency' => :'String',
38
+ :'amount' => :'Float'
39
+ }
40
+ end
41
+
42
+ # List of attributes with nullable: true
43
+ def self.openapi_nullable
44
+ Set.new([
45
+ ])
46
+ end
47
+
48
+ # Initializes the object
49
+ # @param [Hash] attributes Model attributes in the form of hash
50
+ def initialize(attributes = {})
51
+ if (!attributes.is_a?(Hash))
52
+ fail ArgumentError, "The input argument (attributes) must be a hash in `SnapTrade::CryptoSpotOrderPreviewEstimatedFee` initialize method"
53
+ end
54
+
55
+ # check to see if the attribute exists and convert string to symbol for hash key
56
+ attributes = attributes.each_with_object({}) { |(k, v), h|
57
+ if (!self.class.attribute_map.key?(k.to_sym))
58
+ fail ArgumentError, "`#{k}` is not a valid attribute in `SnapTrade::CryptoSpotOrderPreviewEstimatedFee`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
59
+ end
60
+ h[k.to_sym] = v
61
+ }
62
+
63
+ if attributes.key?(:'currency')
64
+ self.currency = attributes[:'currency']
65
+ end
66
+
67
+ if attributes.key?(:'amount')
68
+ self.amount = attributes[:'amount']
69
+ end
70
+ end
71
+
72
+ # Show invalid properties with the reasons. Usually used together with valid?
73
+ # @return Array for valid properties with the reasons
74
+ def list_invalid_properties
75
+ invalid_properties = Array.new
76
+ if @currency.nil?
77
+ invalid_properties.push('invalid value for "currency", currency cannot be nil.')
78
+ end
79
+
80
+ if @amount.nil?
81
+ invalid_properties.push('invalid value for "amount", amount cannot be nil.')
82
+ end
83
+
84
+ invalid_properties
85
+ end
86
+
87
+ # Check to see if the all the properties in the model are valid
88
+ # @return true if the model is valid
89
+ def valid?
90
+ return false if @currency.nil?
91
+ return false if @amount.nil?
92
+ true
93
+ end
94
+
95
+ # Checks equality by comparing each attribute.
96
+ # @param [Object] Object to be compared
97
+ def ==(o)
98
+ return true if self.equal?(o)
99
+ self.class == o.class &&
100
+ currency == o.currency &&
101
+ amount == o.amount
102
+ end
103
+
104
+ # @see the `==` method
105
+ # @param [Object] Object to be compared
106
+ def eql?(o)
107
+ self == o
108
+ end
109
+
110
+ # Calculates hash code according to all attributes.
111
+ # @return [Integer] Hash code
112
+ def hash
113
+ [currency, amount].hash
114
+ end
115
+
116
+ # Builds the object from hash
117
+ # @param [Hash] attributes Model attributes in the form of hash
118
+ # @return [Object] Returns the model itself
119
+ def self.build_from_hash(attributes)
120
+ new.build_from_hash(attributes)
121
+ end
122
+
123
+ # Builds the object from hash
124
+ # @param [Hash] attributes Model attributes in the form of hash
125
+ # @return [Object] Returns the model itself
126
+ def build_from_hash(attributes)
127
+ return nil unless attributes.is_a?(Hash)
128
+ attributes = attributes.transform_keys(&:to_sym)
129
+ self.class.openapi_types.each_pair do |key, type|
130
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
131
+ self.send("#{key}=", nil)
132
+ elsif type =~ /\AArray<(.*)>/i
133
+ # check to ensure the input is an array given that the attribute
134
+ # is documented as an array but the input is not
135
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
136
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
137
+ end
138
+ elsif !attributes[self.class.attribute_map[key]].nil?
139
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
140
+ end
141
+ end
142
+
143
+ self
144
+ end
145
+
146
+ # Deserializes the data based on type
147
+ # @param string type Data type
148
+ # @param string value Value to be deserialized
149
+ # @return [Object] Deserialized data
150
+ def _deserialize(type, value)
151
+ case type.to_sym
152
+ when :Time
153
+ Time.parse(value)
154
+ when :Date
155
+ Date.parse(value)
156
+ when :String
157
+ value.to_s
158
+ when :Integer
159
+ value.to_i
160
+ when :Float
161
+ value.to_f
162
+ when :Boolean
163
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
164
+ true
165
+ else
166
+ false
167
+ end
168
+ when :Object
169
+ # generic object (usually a Hash), return directly
170
+ value
171
+ when /\AArray<(?<inner_type>.+)>\z/
172
+ inner_type = Regexp.last_match[:inner_type]
173
+ value.map { |v| _deserialize(inner_type, v) }
174
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
175
+ k_type = Regexp.last_match[:k_type]
176
+ v_type = Regexp.last_match[:v_type]
177
+ {}.tap do |hash|
178
+ value.each do |k, v|
179
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
180
+ end
181
+ end
182
+ else # model
183
+ # models (e.g. Pet) or oneOf
184
+ klass = SnapTrade.const_get(type)
185
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
186
+ end
187
+ end
188
+
189
+ # Returns the string representation of the object
190
+ # @return [String] String presentation of the object
191
+ def to_s
192
+ to_hash.to_s
193
+ end
194
+
195
+ # to_body is an alias to to_hash (backward compatibility)
196
+ # @return [Hash] Returns the object in the form of hash
197
+ def to_body
198
+ to_hash
199
+ end
200
+
201
+ # Returns the object in the form of hash
202
+ # @return [Hash] Returns the object in the form of hash
203
+ def to_hash
204
+ hash = {}
205
+ self.class.attribute_map.each_pair do |attr, param|
206
+ value = self.send(attr)
207
+ if value.nil?
208
+ is_nullable = self.class.openapi_nullable.include?(attr)
209
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
210
+ end
211
+
212
+ hash[param] = _to_hash(value)
213
+ end
214
+ hash
215
+ end
216
+
217
+ # Outputs non-array value in the form of hash
218
+ # For object, use to_hash. Otherwise, just return the value
219
+ # @param [Object] value Any valid value
220
+ # @return [Hash] Returns the value in the form of hash
221
+ def _to_hash(value)
222
+ if value.is_a?(Array)
223
+ value.compact.map { |v| _to_hash(v) }
224
+ elsif value.is_a?(Hash)
225
+ {}.tap do |hash|
226
+ value.each { |k, v| hash[k] = _to_hash(v) }
227
+ end
228
+ elsif value.respond_to? :to_hash
229
+ value.to_hash
230
+ else
231
+ value
232
+ end
233
+ end
234
+
235
+ end
236
+
237
+ end
@@ -0,0 +1,39 @@
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 CryptoSpotOrderRequestBodyTimeInForce
15
+ GTC = "GTC".freeze
16
+ FOK = "FOK".freeze
17
+ IOC = "IOC".freeze
18
+ GTD = "GTD".freeze
19
+
20
+ def self.all_vars
21
+ @all_vars ||= [GTC, FOK, IOC, GTD].freeze
22
+ end
23
+
24
+ # Builds the enum from string
25
+ # @param [String] The enum value in the form of the string
26
+ # @return [String] The enum value
27
+ def self.build_from_hash(value)
28
+ new.build_from_hash(value)
29
+ end
30
+
31
+ # Builds the enum from string
32
+ # @param [String] The enum value in the form of the string
33
+ # @return [String] The enum value
34
+ def build_from_hash(value)
35
+ return value if CryptoSpotOrderRequestBodyTimeInForce.all_vars.include?(value)
36
+ raise "Invalid ENUM value #{value} for class #CryptoSpotOrderRequestBodyTimeInForce"
37
+ end
38
+ end
39
+ end