Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.07 KB

File metadata and controls

29 lines (20 loc) · 1.07 KB

PostgresVersionListDataInner

Properties

Name Type Description Notes
name str [optional]

Example

from ionoscloud_dbaas_postgres.models.postgres_version_list_data_inner import PostgresVersionListDataInner

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

# convert the object into a dict
postgres_version_list_data_inner_dict = postgres_version_list_data_inner_instance.to_dict()
# create an instance of PostgresVersionListDataInner from a dict
postgres_version_list_data_inner_from_dict = PostgresVersionListDataInner.from_dict(postgres_version_list_data_inner_dict)

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