Method: DatadogAPIClient::APIClient#convert_to_type
- Defined in:
- lib/datadog_api_client/api_client.rb
#convert_to_type(data, return_type, api_version) ⇒ Mixed
Convert data to the given return type.
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 |
# File 'lib/datadog_api_client/api_client.rb', line 319 def convert_to_type(data, return_type, api_version) return nil if data.nil? case return_type when 'String' data.to_s when 'Integer' data.to_i when 'Float' data.to_f when 'Boolean' data == true when 'Time' # parse date time (expecting ISO 8601 format) Time.parse data when 'Date' # parse date time (expecting ISO 8601 format) Date.parse data when 'Object' # generic object (usually a Hash), return directly data when 'UUID' # parse uuid object data.to_s when /\AArray<(.+)>\z/ # e.g. Array<Pet> sub_type = $1 data.map { |item| convert_to_type(item, sub_type, api_version) } when /\AHash\<String, (.+)\>\z/ # e.g. Hash<String, Integer> sub_type = $1 {}.tap do |hash| data.each { |k, v| hash[k] = convert_to_type(v, sub_type, api_version) } end else # models (e.g. Pet) or oneOf klass = DatadogAPIClient.const_get(api_version).const_get(return_type) klass.respond_to?(:openapi_one_of) ? klass.build(data) : klass.build_from_hash(data) end end |