endoflife_date 0.10.0

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.
@@ -0,0 +1,290 @@
1
+ =begin
2
+ #endoflife.date
3
+
4
+ #Documentation for the endoflife.date API. The API is currently in Alpha. Additional information about the API can be found on the [endoflife.date wiki](https://github.com/endoflife-date/endoflife.date/wiki)
5
+
6
+ The version of the OpenAPI document: 0.0.1
7
+ Contact: blah@cliffano.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 7.0.0
10
+
11
+ =end
12
+
13
+ module EndOfLifeDateApiClient
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
+ # Defines the logger used for debugging.
83
+ # Default to `Rails.logger` (when in Rails) or logging to STDOUT.
84
+ #
85
+ # @return [#debug]
86
+ attr_accessor :logger
87
+
88
+ # Defines the temporary folder to store downloaded files
89
+ # (for API endpoints that have file response).
90
+ # Default to use `Tempfile`.
91
+ #
92
+ # @return [String]
93
+ attr_accessor :temp_folder_path
94
+
95
+ # The time limit for HTTP request in seconds.
96
+ # Default to 0 (never times out).
97
+ attr_accessor :timeout
98
+
99
+ # Set this to false to skip client side validation in the operation.
100
+ # Default to true.
101
+ # @return [true, false]
102
+ attr_accessor :client_side_validation
103
+
104
+ ### TLS/SSL setting
105
+ # Set this to false to skip verifying SSL certificate when calling API from https server.
106
+ # Default to true.
107
+ #
108
+ # @note Do NOT set it to false in production code, otherwise you would face multiple types of cryptographic attacks.
109
+ #
110
+ # @return [true, false]
111
+ attr_accessor :verify_ssl
112
+
113
+ ### TLS/SSL setting
114
+ # Set this to false to skip verifying SSL host name
115
+ # Default to true.
116
+ #
117
+ # @note Do NOT set it to false in production code, otherwise you would face multiple types of cryptographic attacks.
118
+ #
119
+ # @return [true, false]
120
+ attr_accessor :verify_ssl_host
121
+
122
+ ### TLS/SSL setting
123
+ # Set this to customize the certificate file to verify the peer.
124
+ #
125
+ # @return [String] the path to the certificate file
126
+ #
127
+ # @see The `cainfo` option of Typhoeus, `--cert` option of libcurl. Related source code:
128
+ # https://github.com/typhoeus/typhoeus/blob/master/lib/typhoeus/easy_factory.rb#L145
129
+ attr_accessor :ssl_ca_cert
130
+
131
+ ### TLS/SSL setting
132
+ # Client certificate file (for client certificate)
133
+ attr_accessor :cert_file
134
+
135
+ ### TLS/SSL setting
136
+ # Client private key file (for client certificate)
137
+ attr_accessor :key_file
138
+
139
+ # Set this to customize parameters encoding of array parameter with multi collectionFormat.
140
+ # Default to nil.
141
+ #
142
+ # @see The params_encoding option of Ethon. Related source code:
143
+ # https://github.com/typhoeus/ethon/blob/master/lib/ethon/easy/queryable.rb#L96
144
+ attr_accessor :params_encoding
145
+
146
+
147
+ attr_accessor :inject_format
148
+
149
+ attr_accessor :force_ending_format
150
+
151
+ def initialize
152
+ @scheme = 'https'
153
+ @host = 'endoflife.date'
154
+ @base_path = ''
155
+ @server_index = nil
156
+ @server_operation_index = {}
157
+ @server_variables = {}
158
+ @server_operation_variables = {}
159
+ @api_key = {}
160
+ @api_key_prefix = {}
161
+ @client_side_validation = true
162
+ @verify_ssl = true
163
+ @verify_ssl_host = true
164
+ @cert_file = nil
165
+ @key_file = nil
166
+ @timeout = 0
167
+ @params_encoding = nil
168
+ @debugging = false
169
+ @inject_format = false
170
+ @force_ending_format = false
171
+ @logger = defined?(Rails) ? Rails.logger : Logger.new(STDOUT)
172
+
173
+ yield(self) if block_given?
174
+ end
175
+
176
+ # The default Configuration object.
177
+ def self.default
178
+ @@default ||= Configuration.new
179
+ end
180
+
181
+ def configure
182
+ yield(self) if block_given?
183
+ end
184
+
185
+ def scheme=(scheme)
186
+ # remove :// from scheme
187
+ @scheme = scheme.sub(/:\/\//, '')
188
+ end
189
+
190
+ def host=(host)
191
+ # remove http(s):// and anything after a slash
192
+ @host = host.sub(/https?:\/\//, '').split('/').first
193
+ end
194
+
195
+ def base_path=(base_path)
196
+ # Add leading and trailing slashes to base_path
197
+ @base_path = "/#{base_path}".gsub(/\/+/, '/')
198
+ @base_path = '' if @base_path == '/'
199
+ end
200
+
201
+ # Returns base URL for specified operation based on server settings
202
+ def base_url(operation = nil)
203
+ if operation_server_settings.key?(operation) then
204
+ index = server_operation_index.fetch(operation, server_index)
205
+ server_url(index.nil? ? 0 : index, server_operation_variables.fetch(operation, server_variables), operation_server_settings[operation])
206
+ else
207
+ server_index.nil? ? "#{scheme}://#{[host, base_path].join('/').gsub(/\/+/, '/')}".sub(/\/+\z/, '') : server_url(server_index, server_variables, nil)
208
+ end
209
+ end
210
+
211
+ # Gets API key (with prefix if set).
212
+ # @param [String] param_name the parameter name of API key auth
213
+ def api_key_with_prefix(param_name, param_alias = nil)
214
+ key = @api_key[param_name]
215
+ key = @api_key.fetch(param_alias, key) unless param_alias.nil?
216
+ if @api_key_prefix[param_name]
217
+ "#{@api_key_prefix[param_name]} #{key}"
218
+ else
219
+ key
220
+ end
221
+ end
222
+
223
+ # Gets access_token using access_token_getter or uses the static access_token
224
+ def access_token_with_refresh
225
+ return access_token if access_token_getter.nil?
226
+ access_token_getter.call
227
+ end
228
+
229
+ # Gets Basic Auth token string
230
+ def basic_auth_token
231
+ 'Basic ' + ["#{username}:#{password}"].pack('m').delete("\r\n")
232
+ end
233
+
234
+ # Returns Auth Settings hash for api client.
235
+ def auth_settings
236
+ {
237
+ }
238
+ end
239
+
240
+ # Returns an array of Server setting
241
+ def server_settings
242
+ [
243
+ {
244
+ url: "https://endoflife.date",
245
+ description: "Production API",
246
+ }
247
+ ]
248
+ end
249
+
250
+ def operation_server_settings
251
+ {
252
+ }
253
+ end
254
+
255
+ # Returns URL based on server settings
256
+ #
257
+ # @param index array index of the server settings
258
+ # @param variables hash of variable and the corresponding value
259
+ def server_url(index, variables = {}, servers = nil)
260
+ servers = server_settings if servers == nil
261
+
262
+ # check array index out of bound
263
+ if (index.nil? || index < 0 || index >= servers.size)
264
+ fail ArgumentError, "Invalid index #{index} when selecting the server. Must not be nil and must be less than #{servers.size}"
265
+ end
266
+
267
+ server = servers[index]
268
+ url = server[:url]
269
+
270
+ return url unless server.key? :variables
271
+
272
+ # go through variable and assign a value
273
+ server[:variables].each do |name, variable|
274
+ if variables.key?(name)
275
+ if (!server[:variables][name].key?(:enum_values) || server[:variables][name][:enum_values].include?(variables[name]))
276
+ url.gsub! "{" + name.to_s + "}", variables[name]
277
+ else
278
+ fail ArgumentError, "The variable `#{name}` in the server URL has invalid value #{variables[name]}. Must be #{server[:variables][name][:enum_values]}."
279
+ end
280
+ else
281
+ # use default value
282
+ url.gsub! "{" + name.to_s + "}", server[:variables][name][:default_value]
283
+ end
284
+ end
285
+
286
+ url
287
+ end
288
+
289
+ end
290
+ end
@@ -0,0 +1,411 @@
1
+ =begin
2
+ #endoflife.date
3
+
4
+ #Documentation for the endoflife.date API. The API is currently in Alpha. Additional information about the API can be found on the [endoflife.date wiki](https://github.com/endoflife-date/endoflife.date/wiki)
5
+
6
+ The version of the OpenAPI document: 0.0.1
7
+ Contact: blah@cliffano.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 7.0.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module EndOfLifeDateApiClient
17
+ # Details of a single release cycle of a given product. There might be some slight variations to this depending on the product.
18
+ class Cycle
19
+ # Release Cycle
20
+ attr_accessor :cycle
21
+
22
+ # Release Date for the first release in this cycle
23
+ attr_accessor :release_date
24
+
25
+ # End of Life Date for this release cycle
26
+ attr_accessor :eol
27
+
28
+ # Latest release in this cycle
29
+ attr_accessor :latest
30
+
31
+ # Link to changelog for the latest release, if available
32
+ attr_accessor :link
33
+
34
+ # Whether this release cycle has long-term-support (LTS). Can be a date instead in YYYY-MM-DD format as well if the release enters LTS status on a given date.
35
+ attr_accessor :lts
36
+
37
+ # Whether this release cycle has active support
38
+ attr_accessor :support
39
+
40
+ # Whether this cycle is now discontinued.
41
+ attr_accessor :discontinued
42
+
43
+ # Attribute mapping from ruby-style variable name to JSON key.
44
+ def self.attribute_map
45
+ {
46
+ :'cycle' => :'cycle',
47
+ :'release_date' => :'releaseDate',
48
+ :'eol' => :'eol',
49
+ :'latest' => :'latest',
50
+ :'link' => :'link',
51
+ :'lts' => :'lts',
52
+ :'support' => :'support',
53
+ :'discontinued' => :'discontinued'
54
+ }
55
+ end
56
+
57
+ # Returns all the JSON keys this model knows about
58
+ def self.acceptable_attributes
59
+ attribute_map.values
60
+ end
61
+
62
+ # Attribute type mapping.
63
+ def self.openapi_types
64
+ {
65
+ :'cycle' => :'Object',
66
+ :'release_date' => :'Object',
67
+ :'eol' => :'Object',
68
+ :'latest' => :'Object',
69
+ :'link' => :'Object',
70
+ :'lts' => :'Object',
71
+ :'support' => :'Object',
72
+ :'discontinued' => :'Object'
73
+ }
74
+ end
75
+
76
+ # List of attributes with nullable: true
77
+ def self.openapi_nullable
78
+ Set.new([
79
+ :'cycle',
80
+ :'release_date',
81
+ :'eol',
82
+ :'latest',
83
+ :'link',
84
+ :'lts',
85
+ :'support',
86
+ :'discontinued'
87
+ ])
88
+ end
89
+
90
+ # Initializes the object
91
+ # @param [Hash] attributes Model attributes in the form of hash
92
+ def initialize(attributes = {})
93
+ if (!attributes.is_a?(Hash))
94
+ fail ArgumentError, "The input argument (attributes) must be a hash in `EndOfLifeDateApiClient::Cycle` initialize method"
95
+ end
96
+
97
+ # check to see if the attribute exists and convert string to symbol for hash key
98
+ attributes = attributes.each_with_object({}) { |(k, v), h|
99
+ if (!self.class.attribute_map.key?(k.to_sym))
100
+ fail ArgumentError, "`#{k}` is not a valid attribute in `EndOfLifeDateApiClient::Cycle`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
101
+ end
102
+ h[k.to_sym] = v
103
+ }
104
+
105
+ if attributes.key?(:'cycle')
106
+ self.cycle = attributes[:'cycle']
107
+ end
108
+
109
+ if attributes.key?(:'release_date')
110
+ self.release_date = attributes[:'release_date']
111
+ end
112
+
113
+ if attributes.key?(:'eol')
114
+ self.eol = attributes[:'eol']
115
+ end
116
+
117
+ if attributes.key?(:'latest')
118
+ self.latest = attributes[:'latest']
119
+ end
120
+
121
+ if attributes.key?(:'link')
122
+ self.link = attributes[:'link']
123
+ end
124
+
125
+ if attributes.key?(:'lts')
126
+ self.lts = attributes[:'lts']
127
+ end
128
+
129
+ if attributes.key?(:'support')
130
+ self.support = attributes[:'support']
131
+ end
132
+
133
+ if attributes.key?(:'discontinued')
134
+ self.discontinued = attributes[:'discontinued']
135
+ end
136
+ end
137
+
138
+ # Show invalid properties with the reasons. Usually used together with valid?
139
+ # @return Array for valid properties with the reasons
140
+ def list_invalid_properties
141
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
142
+ invalid_properties = Array.new
143
+ if !@release_date.nil? && @release_date.to_s.length > 10
144
+ invalid_properties.push('invalid value for "release_date", the character length must be smaller than or equal to 10.')
145
+ end
146
+
147
+ if !@release_date.nil? && @release_date.to_s.length < 10
148
+ invalid_properties.push('invalid value for "release_date", the character length must be great than or equal to 10.')
149
+ end
150
+
151
+ if !@eol.nil? && @eol.to_s.length < 1
152
+ invalid_properties.push('invalid value for "eol", the character length must be great than or equal to 1.')
153
+ end
154
+
155
+ if !@latest.nil? && @latest.to_s.length < 1
156
+ invalid_properties.push('invalid value for "latest", the character length must be great than or equal to 1.')
157
+ end
158
+
159
+ if !@link.nil? && @link.to_s.length < 1
160
+ invalid_properties.push('invalid value for "link", the character length must be great than or equal to 1.')
161
+ end
162
+
163
+ if !@support.nil? && @support.to_s.length > 10
164
+ invalid_properties.push('invalid value for "support", the character length must be smaller than or equal to 10.')
165
+ end
166
+
167
+ if !@support.nil? && @support.to_s.length < 10
168
+ invalid_properties.push('invalid value for "support", the character length must be great than or equal to 10.')
169
+ end
170
+
171
+ if !@discontinued.nil? && @discontinued.to_s.length > 10
172
+ invalid_properties.push('invalid value for "discontinued", the character length must be smaller than or equal to 10.')
173
+ end
174
+
175
+ if !@discontinued.nil? && @discontinued.to_s.length < 10
176
+ invalid_properties.push('invalid value for "discontinued", the character length must be great than or equal to 10.')
177
+ end
178
+
179
+ invalid_properties
180
+ end
181
+
182
+ # Check to see if the all the properties in the model are valid
183
+ # @return true if the model is valid
184
+ def valid?
185
+ warn '[DEPRECATED] the `valid?` method is obsolete'
186
+ return false if !@release_date.nil? && @release_date.to_s.length > 10
187
+ return false if !@release_date.nil? && @release_date.to_s.length < 10
188
+ return false if !@eol.nil? && @eol.to_s.length < 1
189
+ return false if !@latest.nil? && @latest.to_s.length < 1
190
+ return false if !@link.nil? && @link.to_s.length < 1
191
+ return false if !@support.nil? && @support.to_s.length > 10
192
+ return false if !@support.nil? && @support.to_s.length < 10
193
+ return false if !@discontinued.nil? && @discontinued.to_s.length > 10
194
+ return false if !@discontinued.nil? && @discontinued.to_s.length < 10
195
+ true
196
+ end
197
+
198
+ # Custom attribute writer method with validation
199
+ # @param [Object] release_date Value to be assigned
200
+ def release_date=(release_date)
201
+ if !release_date.nil? && release_date.to_s.length > 10
202
+ fail ArgumentError, 'invalid value for "release_date", the character length must be smaller than or equal to 10.'
203
+ end
204
+
205
+ if !release_date.nil? && release_date.to_s.length < 10
206
+ fail ArgumentError, 'invalid value for "release_date", the character length must be great than or equal to 10.'
207
+ end
208
+
209
+ @release_date = release_date
210
+ end
211
+
212
+ # Custom attribute writer method with validation
213
+ # @param [Object] eol Value to be assigned
214
+ def eol=(eol)
215
+ if !eol.nil? && eol.to_s.length < 1
216
+ fail ArgumentError, 'invalid value for "eol", the character length must be great than or equal to 1.'
217
+ end
218
+
219
+ @eol = eol
220
+ end
221
+
222
+ # Custom attribute writer method with validation
223
+ # @param [Object] latest Value to be assigned
224
+ def latest=(latest)
225
+ if !latest.nil? && latest.to_s.length < 1
226
+ fail ArgumentError, 'invalid value for "latest", the character length must be great than or equal to 1.'
227
+ end
228
+
229
+ @latest = latest
230
+ end
231
+
232
+ # Custom attribute writer method with validation
233
+ # @param [Object] link Value to be assigned
234
+ def link=(link)
235
+ if !link.nil? && link.to_s.length < 1
236
+ fail ArgumentError, 'invalid value for "link", the character length must be great than or equal to 1.'
237
+ end
238
+
239
+ @link = link
240
+ end
241
+
242
+ # Custom attribute writer method with validation
243
+ # @param [Object] support Value to be assigned
244
+ def support=(support)
245
+ if !support.nil? && support.to_s.length > 10
246
+ fail ArgumentError, 'invalid value for "support", the character length must be smaller than or equal to 10.'
247
+ end
248
+
249
+ if !support.nil? && support.to_s.length < 10
250
+ fail ArgumentError, 'invalid value for "support", the character length must be great than or equal to 10.'
251
+ end
252
+
253
+ @support = support
254
+ end
255
+
256
+ # Custom attribute writer method with validation
257
+ # @param [Object] discontinued Value to be assigned
258
+ def discontinued=(discontinued)
259
+ if !discontinued.nil? && discontinued.to_s.length > 10
260
+ fail ArgumentError, 'invalid value for "discontinued", the character length must be smaller than or equal to 10.'
261
+ end
262
+
263
+ if !discontinued.nil? && discontinued.to_s.length < 10
264
+ fail ArgumentError, 'invalid value for "discontinued", the character length must be great than or equal to 10.'
265
+ end
266
+
267
+ @discontinued = discontinued
268
+ end
269
+
270
+ # Checks equality by comparing each attribute.
271
+ # @param [Object] Object to be compared
272
+ def ==(o)
273
+ return true if self.equal?(o)
274
+ self.class == o.class &&
275
+ cycle == o.cycle &&
276
+ release_date == o.release_date &&
277
+ eol == o.eol &&
278
+ latest == o.latest &&
279
+ link == o.link &&
280
+ lts == o.lts &&
281
+ support == o.support &&
282
+ discontinued == o.discontinued
283
+ end
284
+
285
+ # @see the `==` method
286
+ # @param [Object] Object to be compared
287
+ def eql?(o)
288
+ self == o
289
+ end
290
+
291
+ # Calculates hash code according to all attributes.
292
+ # @return [Integer] Hash code
293
+ def hash
294
+ [cycle, release_date, eol, latest, link, lts, support, discontinued].hash
295
+ end
296
+
297
+ # Builds the object from hash
298
+ # @param [Hash] attributes Model attributes in the form of hash
299
+ # @return [Object] Returns the model itself
300
+ def self.build_from_hash(attributes)
301
+ return nil unless attributes.is_a?(Hash)
302
+ attributes = attributes.transform_keys(&:to_sym)
303
+ transformed_hash = {}
304
+ openapi_types.each_pair do |key, type|
305
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
306
+ transformed_hash["#{key}"] = nil
307
+ elsif type =~ /\AArray<(.*)>/i
308
+ # check to ensure the input is an array given that the attribute
309
+ # is documented as an array but the input is not
310
+ if attributes[attribute_map[key]].is_a?(Array)
311
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
312
+ end
313
+ elsif !attributes[attribute_map[key]].nil?
314
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
315
+ end
316
+ end
317
+ new(transformed_hash)
318
+ end
319
+
320
+ # Deserializes the data based on type
321
+ # @param string type Data type
322
+ # @param string value Value to be deserialized
323
+ # @return [Object] Deserialized data
324
+ def self._deserialize(type, value)
325
+ case type.to_sym
326
+ when :Time
327
+ Time.parse(value)
328
+ when :Date
329
+ Date.parse(value)
330
+ when :String
331
+ value.to_s
332
+ when :Integer
333
+ value.to_i
334
+ when :Float
335
+ value.to_f
336
+ when :Boolean
337
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
338
+ true
339
+ else
340
+ false
341
+ end
342
+ when :Object
343
+ # generic object (usually a Hash), return directly
344
+ value
345
+ when /\AArray<(?<inner_type>.+)>\z/
346
+ inner_type = Regexp.last_match[:inner_type]
347
+ value.map { |v| _deserialize(inner_type, v) }
348
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
349
+ k_type = Regexp.last_match[:k_type]
350
+ v_type = Regexp.last_match[:v_type]
351
+ {}.tap do |hash|
352
+ value.each do |k, v|
353
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
354
+ end
355
+ end
356
+ else # model
357
+ # models (e.g. Pet) or oneOf
358
+ klass = EndOfLifeDateApiClient.const_get(type)
359
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
360
+ end
361
+ end
362
+
363
+ # Returns the string representation of the object
364
+ # @return [String] String presentation of the object
365
+ def to_s
366
+ to_hash.to_s
367
+ end
368
+
369
+ # to_body is an alias to to_hash (backward compatibility)
370
+ # @return [Hash] Returns the object in the form of hash
371
+ def to_body
372
+ to_hash
373
+ end
374
+
375
+ # Returns the object in the form of hash
376
+ # @return [Hash] Returns the object in the form of hash
377
+ def to_hash
378
+ hash = {}
379
+ self.class.attribute_map.each_pair do |attr, param|
380
+ value = self.send(attr)
381
+ if value.nil?
382
+ is_nullable = self.class.openapi_nullable.include?(attr)
383
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
384
+ end
385
+
386
+ hash[param] = _to_hash(value)
387
+ end
388
+ hash
389
+ end
390
+
391
+ # Outputs non-array value in the form of hash
392
+ # For object, use to_hash. Otherwise, just return the value
393
+ # @param [Object] value Any valid value
394
+ # @return [Hash] Returns the value in the form of hash
395
+ def _to_hash(value)
396
+ if value.is_a?(Array)
397
+ value.compact.map { |v| _to_hash(v) }
398
+ elsif value.is_a?(Hash)
399
+ {}.tap do |hash|
400
+ value.each { |k, v| hash[k] = _to_hash(v) }
401
+ end
402
+ elsif value.respond_to? :to_hash
403
+ value.to_hash
404
+ else
405
+ value
406
+ end
407
+ end
408
+
409
+ end
410
+
411
+ end