List of PostgreSQL versions.
| Name | Type | Description | Notes |
|---|---|---|---|
| data | list[PostgresVersionListDataInner] | [optional] |
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)