Postgres version.
| Name | Type | Description | Notes |
|---|---|---|---|
| version | str | The PostgreSQL version for the cluster. | [optional] |
| status | str | The support status of the version. | [optional] |
| comment | str | Additional information about the version status. | [optional] |
| can_upgrade_to | list[str] | List of versions that this version can be upgraded to. | [optional] |
from ionoscloud_dbaas_postgres.models.postgres_version import PostgresVersion
# TODO update the JSON string below
json = "{}"
# create an instance of PostgresVersion from a JSON string
postgres_version_instance = PostgresVersion.from_json(json)
# print the JSON string representation of the object
print(PostgresVersion.to_json())
# convert the object into a dict
postgres_version_dict = postgres_version_instance.to_dict()
# create an instance of PostgresVersion from a dict
postgres_version_from_dict = PostgresVersion.from_dict(postgres_version_dict)