Method: OpenApiOpenAIClient::ApiClient#object_to_hash

Defined in:
lib/openapi_openai/api_client.rb

#object_to_hash(obj) ⇒ String

Convert object(non-array) to hash.

Parameters:

  • obj (Object)

    object to be converted into JSON string

Returns:

  • (String)

    JSON string representation of the object



365
366
367
368
369
370
371
# File 'lib/openapi_openai/api_client.rb', line 365

def object_to_hash(obj)
  if obj.respond_to?(:to_hash)
    obj.to_hash
  else
    obj
  end
end