Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 796 Bytes

File metadata and controls

27 lines (19 loc) · 796 Bytes

Postgresql

Properties

Name Type Description Notes

Example

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)

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