Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

PostgresVersionList

List of PostgreSQL versions.

Properties

Name Type Description Notes
data list[PostgresVersionListDataInner] [optional]

Example

from ionoscloud_dbaas_postgres.models.postgres_version_list import PostgresVersionList

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

# convert the object into a dict
postgres_version_list_dict = postgres_version_list_instance.to_dict()
# create an instance of PostgresVersionList from a dict
postgres_version_list_from_dict = PostgresVersionList.from_dict(postgres_version_list_dict)

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