Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.18 KB

File metadata and controls

33 lines (24 loc) · 1.18 KB

PostgresVersionRead

Properties

Name Type Description Notes
id str The ID (UUID) of the PostgresVersion.
type str The type of the resource.
href str The URL of the PostgresVersion.
metadata object [readonly]
properties PostgresVersion

Example

from ionoscloud_dbaas_postgres.models.postgres_version_read import PostgresVersionRead

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

# convert the object into a dict
postgres_version_read_dict = postgres_version_read_instance.to_dict()
# create an instance of PostgresVersionRead from a dict
postgres_version_read_from_dict = PostgresVersionRead.from_dict(postgres_version_read_dict)

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