| Name | Type | Description | Notes |
|---|
from timeweb_cloud_api.models.postgresql import Postgresql
# TODO update the JSON string below
json = "{}"
# create an instance of Postgresql from a JSON string
postgresql_instance = Postgresql.from_json(json)
# print the JSON string representation of the object
print Postgresql.to_json()
# convert the object into a dict
postgresql_dict = postgresql_instance.to_dict()
# create an instance of Postgresql from a dict
postgresql_form_dict = postgresql.from_dict(postgresql_dict)