Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Latest commit

 

History

History
28 lines (20 loc) · 1.17 KB

DatabaseConfigurationResponseList.md

File metadata and controls

28 lines (20 loc) · 1.17 KB

DatabaseConfigurationResponseList

Properties

Name Type Description Notes
results List[DatabaseConfiguration] [optional]

Example

from qovery.models.database_configuration_response_list import DatabaseConfigurationResponseList

# TODO update the JSON string below
json = "{}"
# create an instance of DatabaseConfigurationResponseList from a JSON string
database_configuration_response_list_instance = DatabaseConfigurationResponseList.from_json(json)
# print the JSON string representation of the object
print DatabaseConfigurationResponseList.to_json()

# convert the object into a dict
database_configuration_response_list_dict = database_configuration_response_list_instance.to_dict()
# create an instance of DatabaseConfigurationResponseList from a dict
database_configuration_response_list_form_dict = database_configuration_response_list.from_dict(database_configuration_response_list_dict)

[Back to Model list] [Back to API list] [Back to README]