fetch_hive 0.2.2

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 (28) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +64 -0
  3. data/lib/fetch_hive/client.rb +160 -0
  4. data/lib/fetch_hive/generated/api/agents_api.rb +90 -0
  5. data/lib/fetch_hive/generated/api/prompts_api.rb +90 -0
  6. data/lib/fetch_hive/generated/api/workflows_api.rb +90 -0
  7. data/lib/fetch_hive/generated/api_client.rb +441 -0
  8. data/lib/fetch_hive/generated/api_error.rb +58 -0
  9. data/lib/fetch_hive/generated/api_model_base.rb +88 -0
  10. data/lib/fetch_hive/generated/configuration.rb +415 -0
  11. data/lib/fetch_hive/generated/models/agent_message.rb +228 -0
  12. data/lib/fetch_hive/generated/models/async_config.rb +175 -0
  13. data/lib/fetch_hive/generated/models/error_response.rb +158 -0
  14. data/lib/fetch_hive/generated/models/invoke_agent_request.rb +250 -0
  15. data/lib/fetch_hive/generated/models/invoke_agent_response.rb +200 -0
  16. data/lib/fetch_hive/generated/models/invoke_prompt_request.rb +211 -0
  17. data/lib/fetch_hive/generated/models/invoke_prompt_response.rb +177 -0
  18. data/lib/fetch_hive/generated/models/invoke_workflow_async_response.rb +193 -0
  19. data/lib/fetch_hive/generated/models/invoke_workflow_request.rb +208 -0
  20. data/lib/fetch_hive/generated/models/invoke_workflow_response.rb +223 -0
  21. data/lib/fetch_hive/generated/models/sse_chunk.rb +228 -0
  22. data/lib/fetch_hive/generated/models/token_usage.rb +169 -0
  23. data/lib/fetch_hive/generated/models/tool_invocation.rb +169 -0
  24. data/lib/fetch_hive/generated/version.rb +15 -0
  25. data/lib/fetch_hive/streaming.rb +65 -0
  26. data/lib/fetch_hive/version.rb +5 -0
  27. data/lib/fetch_hive.rb +10 -0
  28. metadata +101 -0
@@ -0,0 +1,415 @@
1
+ =begin
2
+ #Fetch Hive Public API
3
+
4
+ #The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
5
+
6
+ The version of the OpenAPI document: 0.2.2
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.22.0
10
+
11
+ =end
12
+
13
+ module FetchHive::Generated
14
+ class Configuration
15
+ # Defines url scheme
16
+ attr_accessor :scheme
17
+
18
+ # Defines url host
19
+ attr_accessor :host
20
+
21
+ # Defines url base path
22
+ attr_accessor :base_path
23
+
24
+ # Define server configuration index
25
+ attr_accessor :server_index
26
+
27
+ # Define server operation configuration index
28
+ attr_accessor :server_operation_index
29
+
30
+ # Default server variables
31
+ attr_accessor :server_variables
32
+
33
+ # Default server operation variables
34
+ attr_accessor :server_operation_variables
35
+
36
+ # Defines API keys used with API Key authentications.
37
+ #
38
+ # @return [Hash] key: parameter name, value: parameter value (API key)
39
+ #
40
+ # @example parameter name is "api_key", API key is "xxx" (e.g. "api_key=xxx" in query string)
41
+ # config.api_key['api_key'] = 'xxx'
42
+ attr_accessor :api_key
43
+
44
+ # Defines API key prefixes used with API Key authentications.
45
+ #
46
+ # @return [Hash] key: parameter name, value: API key prefix
47
+ #
48
+ # @example parameter name is "Authorization", API key prefix is "Token" (e.g. "Authorization: Token xxx" in headers)
49
+ # config.api_key_prefix['api_key'] = 'Token'
50
+ attr_accessor :api_key_prefix
51
+
52
+ # Defines the username used with HTTP basic authentication.
53
+ #
54
+ # @return [String]
55
+ attr_accessor :username
56
+
57
+ # Defines the password used with HTTP basic authentication.
58
+ #
59
+ # @return [String]
60
+ attr_accessor :password
61
+
62
+ # Defines the access token (Bearer) used with OAuth2.
63
+ attr_accessor :access_token
64
+
65
+ # Defines a Proc used to fetch or refresh access tokens (Bearer) used with OAuth2.
66
+ # Overrides the access_token if set
67
+ # @return [Proc]
68
+ attr_accessor :access_token_getter
69
+
70
+ # Set this to return data as binary instead of downloading a temp file. When enabled (set to true)
71
+ # HTTP responses with return type `File` will be returned as a stream of binary data.
72
+ # Default to false.
73
+ attr_accessor :return_binary_data
74
+
75
+ # Set this to enable/disable debugging. When enabled (set to true), HTTP request/response
76
+ # details will be logged with `logger.debug` (see the `logger` attribute).
77
+ # Default to false.
78
+ #
79
+ # @return [true, false]
80
+ attr_accessor :debugging
81
+
82
+ # Set this to ignore operation servers for the API client. This is useful when you need to
83
+ # send requests to a different server than the one specified in the OpenAPI document.
84
+ # Will default to the base url defined in the spec but can be overridden by setting
85
+ # `scheme`, `host`, `base_path` directly.
86
+ # Default to false.
87
+ # @return [true, false]
88
+ attr_accessor :ignore_operation_servers
89
+
90
+ # Defines the logger used for debugging.
91
+ # Default to `Rails.logger` (when in Rails) or logging to STDOUT.
92
+ #
93
+ # @return [#debug]
94
+ attr_accessor :logger
95
+
96
+ # Defines the temporary folder to store downloaded files
97
+ # (for API endpoints that have file response).
98
+ # Default to use `Tempfile`.
99
+ #
100
+ # @return [String]
101
+ attr_accessor :temp_folder_path
102
+
103
+ # The time limit for HTTP request in seconds.
104
+ # Default to 0 (never times out).
105
+ attr_accessor :timeout
106
+
107
+ # Set this to false to skip client side validation in the operation.
108
+ # Default to true.
109
+ # @return [true, false]
110
+ attr_accessor :client_side_validation
111
+
112
+ ### TLS/SSL setting
113
+ # Set this to false to skip verifying SSL certificate when calling API from https server.
114
+ # Default to true.
115
+ #
116
+ # @note Do NOT set it to false in production code, otherwise you would face multiple types of cryptographic attacks.
117
+ #
118
+ # @return [true, false]
119
+ attr_accessor :ssl_verify
120
+
121
+ ### TLS/SSL setting
122
+ # Any `OpenSSL::SSL::` constant (see https://ruby-doc.org/stdlib-2.5.1/libdoc/openssl/rdoc/OpenSSL/SSL.html)
123
+ #
124
+ # @note Do NOT set it to false in production code, otherwise you would face multiple types of cryptographic attacks.
125
+ #
126
+ attr_accessor :ssl_verify_mode
127
+
128
+ ### TLS/SSL setting
129
+ # Set this to customize the certificate file to verify the peer.
130
+ #
131
+ # @return [String] the path to the certificate file
132
+ attr_accessor :ssl_ca_file
133
+
134
+ ### TLS/SSL setting
135
+ # Client certificate file (for client certificate)
136
+ attr_accessor :ssl_client_cert
137
+
138
+ ### TLS/SSL setting
139
+ # Client private key file (for client certificate)
140
+ attr_accessor :ssl_client_key
141
+
142
+ ### Proxy setting
143
+ # HTTP Proxy settings
144
+ attr_accessor :proxy
145
+
146
+ # Set this to customize parameters encoder of array parameter.
147
+ # Default to nil. Faraday uses NestedParamsEncoder when nil.
148
+ #
149
+ # @see The params_encoder option of Faraday. Related source code:
150
+ # https://github.com/lostisland/faraday/tree/main/lib/faraday/encoders
151
+ attr_accessor :params_encoder
152
+
153
+
154
+ attr_accessor :inject_format
155
+
156
+ attr_accessor :force_ending_format
157
+
158
+ def initialize
159
+ @scheme = 'https'
160
+ @host = 'api.fetchhive.com'
161
+ @base_path = '/v1'
162
+ @server_index = nil
163
+ @server_operation_index = {}
164
+ @server_variables = {}
165
+ @server_operation_variables = {}
166
+ @api_key = {}
167
+ @api_key_prefix = {}
168
+ @client_side_validation = true
169
+ @ssl_verify = true
170
+ @ssl_verify_mode = nil
171
+ @ssl_ca_file = nil
172
+ @ssl_client_cert = nil
173
+ @ssl_client_key = nil
174
+ @middlewares = Hash.new { |h, k| h[k] = [] }
175
+ @configure_connection_blocks = []
176
+ @timeout = 60
177
+ # return data as binary instead of file
178
+ @return_binary_data = false
179
+ @params_encoder = nil
180
+ @debugging = false
181
+ @ignore_operation_servers = false
182
+ @inject_format = false
183
+ @force_ending_format = false
184
+ @logger = defined?(Rails) ? Rails.logger : Logger.new(STDOUT)
185
+
186
+ yield(self) if block_given?
187
+ end
188
+
189
+ # The default Configuration object.
190
+ def self.default
191
+ @@default ||= Configuration.new
192
+ end
193
+
194
+ def configure
195
+ yield(self) if block_given?
196
+ end
197
+
198
+ def scheme=(scheme)
199
+ # remove :// from scheme
200
+ @scheme = scheme.sub(/:\/\//, '')
201
+ end
202
+
203
+ def host=(host)
204
+ # remove http(s):// and anything after a slash
205
+ @host = host.sub(/https?:\/\//, '').split('/').first
206
+ end
207
+
208
+ def base_path=(base_path)
209
+ # Add leading and trailing slashes to base_path
210
+ @base_path = "/#{base_path}".gsub(/\/+/, '/')
211
+ @base_path = '' if @base_path == '/'
212
+ end
213
+
214
+ # Returns base URL for specified operation based on server settings
215
+ def base_url(operation = nil)
216
+ return "#{scheme}://#{[host, base_path].join('/').gsub(/\/+/, '/')}".sub(/\/+\z/, '') if ignore_operation_servers
217
+ if operation_server_settings.key?(operation) then
218
+ index = server_operation_index.fetch(operation, server_index)
219
+ server_url(index.nil? ? 0 : index, server_operation_variables.fetch(operation, server_variables), operation_server_settings[operation])
220
+ else
221
+ server_index.nil? ? "#{scheme}://#{[host, base_path].join('/').gsub(/\/+/, '/')}".sub(/\/+\z/, '') : server_url(server_index, server_variables, nil)
222
+ end
223
+ end
224
+
225
+ # Gets API key (with prefix if set).
226
+ # @param [String] param_name the parameter name of API key auth
227
+ def api_key_with_prefix(param_name, param_alias = nil)
228
+ key = @api_key[param_name]
229
+ key = @api_key.fetch(param_alias, key) unless param_alias.nil?
230
+ if @api_key_prefix[param_name]
231
+ "#{@api_key_prefix[param_name]} #{key}"
232
+ else
233
+ key
234
+ end
235
+ end
236
+
237
+ # Gets access_token using access_token_getter or uses the static access_token
238
+ def access_token_with_refresh
239
+ return access_token if access_token_getter.nil?
240
+ access_token_getter.call
241
+ end
242
+
243
+ # Gets Basic Auth token string
244
+ def basic_auth_token
245
+ 'Basic ' + ["#{username}:#{password}"].pack('m').delete("\r\n")
246
+ end
247
+
248
+ # Returns Auth Settings hash for api client.
249
+ def auth_settings
250
+ {
251
+ 'BearerAuth' =>
252
+ {
253
+ type: 'bearer',
254
+ in: 'header',
255
+ key: 'Authorization',
256
+ value: "Bearer #{access_token_with_refresh}"
257
+ },
258
+ 'bearer_auth' =>
259
+ {
260
+ type: 'bearer',
261
+ in: 'header',
262
+ format: 'JWT',
263
+ key: 'Authorization',
264
+ value: "Bearer #{access_token_with_refresh}"
265
+ },
266
+ 'global_api_key' =>
267
+ {
268
+ type: 'bearer',
269
+ in: 'header',
270
+ key: 'Authorization',
271
+ value: "Bearer #{access_token_with_refresh}"
272
+ },
273
+ 'internal_service_auth' =>
274
+ {
275
+ type: 'bearer',
276
+ in: 'header',
277
+ format: 'JWT',
278
+ key: 'Authorization',
279
+ value: "Bearer #{access_token_with_refresh}"
280
+ },
281
+ }
282
+ end
283
+
284
+ # Returns an array of Server setting
285
+ def server_settings
286
+ [
287
+ {
288
+ url: "https://api.fetchhive.com/v1",
289
+ description: "Production",
290
+ }
291
+ ]
292
+ end
293
+
294
+ def operation_server_settings
295
+ {
296
+ }
297
+ end
298
+
299
+ # Returns URL based on server settings
300
+ #
301
+ # @param index array index of the server settings
302
+ # @param variables hash of variable and the corresponding value
303
+ def server_url(index, variables = {}, servers = nil)
304
+ servers = server_settings if servers == nil
305
+
306
+ # check array index out of bound
307
+ if (index.nil? || index < 0 || index >= servers.size)
308
+ fail ArgumentError, "Invalid index #{index} when selecting the server. Must not be nil and must be less than #{servers.size}"
309
+ end
310
+
311
+ server = servers[index]
312
+ url = server[:url]
313
+
314
+ return url unless server.key? :variables
315
+
316
+ # go through variable and assign a value
317
+ server[:variables].each do |name, variable|
318
+ if variables.key?(name)
319
+ if (!server[:variables][name].key?(:enum_values) || server[:variables][name][:enum_values].include?(variables[name]))
320
+ url.gsub! "{" + name.to_s + "}", variables[name]
321
+ else
322
+ fail ArgumentError, "The variable `#{name}` in the server URL has invalid value #{variables[name]}. Must be #{server[:variables][name][:enum_values]}."
323
+ end
324
+ else
325
+ # use default value
326
+ url.gsub! "{" + name.to_s + "}", server[:variables][name][:default_value]
327
+ end
328
+ end
329
+
330
+ url
331
+ end
332
+
333
+ # Configure Faraday connection directly.
334
+ #
335
+ # ```
336
+ # c.configure_faraday_connection do |conn|
337
+ # conn.use Faraday::HttpCache, shared_cache: false, logger: logger
338
+ # conn.response :logger, nil, headers: true, bodies: true, log_level: :debug do |logger|
339
+ # logger.filter(/(Authorization: )(.*)/, '\1[REDACTED]')
340
+ # end
341
+ # end
342
+ #
343
+ # c.configure_faraday_connection do |conn|
344
+ # conn.adapter :typhoeus
345
+ # end
346
+ # ```
347
+ #
348
+ # @param block [Proc] `#call`able object that takes one arg, the connection
349
+ def configure_faraday_connection(&block)
350
+ @configure_connection_blocks << block
351
+ end
352
+
353
+ def configure_connection(conn)
354
+ @configure_connection_blocks.each do |block|
355
+ block.call(conn)
356
+ end
357
+ end
358
+
359
+ # Adds middleware to the stack
360
+ def use(*middleware)
361
+ set_faraday_middleware(:use, *middleware)
362
+ end
363
+
364
+ # Adds request middleware to the stack
365
+ def request(*middleware)
366
+ set_faraday_middleware(:request, *middleware)
367
+ end
368
+
369
+ # Adds response middleware to the stack
370
+ def response(*middleware)
371
+ set_faraday_middleware(:response, *middleware)
372
+ end
373
+
374
+ # Adds Faraday middleware setting information to the stack
375
+ #
376
+ # @example Use the `set_faraday_middleware` method to set middleware information
377
+ # config.set_faraday_middleware(:request, :retry, max: 3, methods: [:get, :post], retry_statuses: [503])
378
+ # config.set_faraday_middleware(:response, :logger, nil, { bodies: true, log_level: :debug })
379
+ # config.set_faraday_middleware(:use, Faraday::HttpCache, store: Rails.cache, shared_cache: false)
380
+ # config.set_faraday_middleware(:insert, 0, FaradayMiddleware::FollowRedirects, { standards_compliant: true, limit: 1 })
381
+ # config.set_faraday_middleware(:swap, 0, Faraday::Response::Logger)
382
+ # config.set_faraday_middleware(:delete, Faraday::Multipart::Middleware)
383
+ #
384
+ # @see https://github.com/lostisland/faraday/blob/v2.3.0/lib/faraday/rack_builder.rb#L92-L143
385
+ def set_faraday_middleware(operation, key, *args, &block)
386
+ unless [:request, :response, :use, :insert, :insert_before, :insert_after, :swap, :delete].include?(operation)
387
+ fail ArgumentError, "Invalid faraday middleware operation #{operation}. Must be" \
388
+ " :request, :response, :use, :insert, :insert_before, :insert_after, :swap or :delete."
389
+ end
390
+
391
+ @middlewares[operation] << [key, args, block]
392
+ end
393
+ ruby2_keywords(:set_faraday_middleware) if respond_to?(:ruby2_keywords, true)
394
+
395
+ # Set up middleware on the connection
396
+ def configure_middleware(connection)
397
+ return if @middlewares.empty?
398
+
399
+ [:request, :response, :use, :insert, :insert_before, :insert_after, :swap].each do |operation|
400
+ next unless @middlewares.key?(operation)
401
+
402
+ @middlewares[operation].each do |key, args, block|
403
+ connection.builder.send(operation, key, *args, &block)
404
+ end
405
+ end
406
+
407
+ if @middlewares.key?(:delete)
408
+ @middlewares[:delete].each do |key, _args, _block|
409
+ connection.builder.delete(key)
410
+ end
411
+ end
412
+ end
413
+
414
+ end
415
+ end
@@ -0,0 +1,228 @@
1
+ =begin
2
+ #Fetch Hive Public API
3
+
4
+ #The Fetch Hive public API lets you invoke prompts, workflows, and agents programmatically using an API token. ## Authentication All requests require a Bearer token in the `Authorization` header: ``` Authorization: Bearer <your-api-token> ``` ## Streaming Pass `\"streaming\": true` in the request body to receive a `text/event-stream` response. Each event is a JSON object sent as `data: <json>\\n\\n`. The stream ends with `data: [DONE]\\n\\n`.
5
+
6
+ The version of the OpenAPI document: 0.2.2
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.22.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module FetchHive::Generated
17
+ class AgentMessage < ApiModelBase
18
+ # Message author role.
19
+ attr_accessor :role
20
+
21
+ # Text content of the message.
22
+ attr_accessor :content
23
+
24
+ # HTTPS image URLs attached to this message.
25
+ attr_accessor :image_urls
26
+
27
+ class EnumAttributeValidator
28
+ attr_reader :datatype
29
+ attr_reader :allowable_values
30
+
31
+ def initialize(datatype, allowable_values)
32
+ @allowable_values = allowable_values.map do |value|
33
+ case datatype.to_s
34
+ when /Integer/i
35
+ value.to_i
36
+ when /Float/i
37
+ value.to_f
38
+ else
39
+ value
40
+ end
41
+ end
42
+ end
43
+
44
+ def valid?(value)
45
+ !value || allowable_values.include?(value)
46
+ end
47
+ end
48
+
49
+ # Attribute mapping from ruby-style variable name to JSON key.
50
+ def self.attribute_map
51
+ {
52
+ :'role' => :'role',
53
+ :'content' => :'content',
54
+ :'image_urls' => :'image_urls'
55
+ }
56
+ end
57
+
58
+ # Returns attribute mapping this model knows about
59
+ def self.acceptable_attribute_map
60
+ attribute_map
61
+ end
62
+
63
+ # Returns all the JSON keys this model knows about
64
+ def self.acceptable_attributes
65
+ acceptable_attribute_map.values
66
+ end
67
+
68
+ # Attribute type mapping.
69
+ def self.openapi_types
70
+ {
71
+ :'role' => :'String',
72
+ :'content' => :'String',
73
+ :'image_urls' => :'Array<String>'
74
+ }
75
+ end
76
+
77
+ # List of attributes with nullable: true
78
+ def self.openapi_nullable
79
+ Set.new([
80
+ ])
81
+ end
82
+
83
+ # Initializes the object
84
+ # @param [Hash] attributes Model attributes in the form of hash
85
+ def initialize(attributes = {})
86
+ if (!attributes.is_a?(Hash))
87
+ fail ArgumentError, "The input argument (attributes) must be a hash in `FetchHive::Generated::AgentMessage` initialize method"
88
+ end
89
+
90
+ # check to see if the attribute exists and convert string to symbol for hash key
91
+ acceptable_attribute_map = self.class.acceptable_attribute_map
92
+ attributes = attributes.each_with_object({}) { |(k, v), h|
93
+ if (!acceptable_attribute_map.key?(k.to_sym))
94
+ fail ArgumentError, "`#{k}` is not a valid attribute in `FetchHive::Generated::AgentMessage`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
95
+ end
96
+ h[k.to_sym] = v
97
+ }
98
+
99
+ if attributes.key?(:'role')
100
+ self.role = attributes[:'role']
101
+ else
102
+ self.role = nil
103
+ end
104
+
105
+ if attributes.key?(:'content')
106
+ self.content = attributes[:'content']
107
+ else
108
+ self.content = nil
109
+ end
110
+
111
+ if attributes.key?(:'image_urls')
112
+ if (value = attributes[:'image_urls']).is_a?(Array)
113
+ self.image_urls = value
114
+ end
115
+ end
116
+ end
117
+
118
+ # Show invalid properties with the reasons. Usually used together with valid?
119
+ # @return Array for valid properties with the reasons
120
+ def list_invalid_properties
121
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
122
+ invalid_properties = Array.new
123
+ if @role.nil?
124
+ invalid_properties.push('invalid value for "role", role cannot be nil.')
125
+ end
126
+
127
+ if @content.nil?
128
+ invalid_properties.push('invalid value for "content", content cannot be nil.')
129
+ end
130
+
131
+ invalid_properties
132
+ end
133
+
134
+ # Check to see if the all the properties in the model are valid
135
+ # @return true if the model is valid
136
+ def valid?
137
+ warn '[DEPRECATED] the `valid?` method is obsolete'
138
+ return false if @role.nil?
139
+ role_validator = EnumAttributeValidator.new('String', ["user", "assistant", "system"])
140
+ return false unless role_validator.valid?(@role)
141
+ return false if @content.nil?
142
+ true
143
+ end
144
+
145
+ # Custom attribute writer method checking allowed values (enum).
146
+ # @param [Object] role Object to be assigned
147
+ def role=(role)
148
+ validator = EnumAttributeValidator.new('String', ["user", "assistant", "system"])
149
+ unless validator.valid?(role)
150
+ fail ArgumentError, "invalid value for \"role\", must be one of #{validator.allowable_values}."
151
+ end
152
+ @role = role
153
+ end
154
+
155
+ # Custom attribute writer method with validation
156
+ # @param [Object] content Value to be assigned
157
+ def content=(content)
158
+ if content.nil?
159
+ fail ArgumentError, 'content cannot be nil'
160
+ end
161
+
162
+ @content = content
163
+ end
164
+
165
+ # Checks equality by comparing each attribute.
166
+ # @param [Object] Object to be compared
167
+ def ==(o)
168
+ return true if self.equal?(o)
169
+ self.class == o.class &&
170
+ role == o.role &&
171
+ content == o.content &&
172
+ image_urls == o.image_urls
173
+ end
174
+
175
+ # @see the `==` method
176
+ # @param [Object] Object to be compared
177
+ def eql?(o)
178
+ self == o
179
+ end
180
+
181
+ # Calculates hash code according to all attributes.
182
+ # @return [Integer] Hash code
183
+ def hash
184
+ [role, content, image_urls].hash
185
+ end
186
+
187
+ # Builds the object from hash
188
+ # @param [Hash] attributes Model attributes in the form of hash
189
+ # @return [Object] Returns the model itself
190
+ def self.build_from_hash(attributes)
191
+ return nil unless attributes.is_a?(Hash)
192
+ attributes = attributes.transform_keys(&:to_sym)
193
+ transformed_hash = {}
194
+ openapi_types.each_pair do |key, type|
195
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
196
+ transformed_hash["#{key}"] = nil
197
+ elsif type =~ /\AArray<(.*)>/i
198
+ # check to ensure the input is an array given that the attribute
199
+ # is documented as an array but the input is not
200
+ if attributes[attribute_map[key]].is_a?(Array)
201
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
202
+ end
203
+ elsif !attributes[attribute_map[key]].nil?
204
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
205
+ end
206
+ end
207
+ new(transformed_hash)
208
+ end
209
+
210
+ # Returns the object in the form of hash
211
+ # @return [Hash] Returns the object in the form of hash
212
+ def to_hash
213
+ hash = {}
214
+ self.class.attribute_map.each_pair do |attr, param|
215
+ value = self.send(attr)
216
+ if value.nil?
217
+ is_nullable = self.class.openapi_nullable.include?(attr)
218
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
219
+ end
220
+
221
+ hash[param] = _to_hash(value)
222
+ end
223
+ hash
224
+ end
225
+
226
+ end
227
+
228
+ end