Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 796 Bytes

File metadata and controls

27 lines (19 loc) · 796 Bytes

Clickhouse

Properties

Name Type Description Notes

Example

from timeweb_cloud_api.models.clickhouse import Clickhouse

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

# convert the object into a dict
clickhouse_dict = clickhouse_instance.to_dict()
# create an instance of Clickhouse from a dict
clickhouse_form_dict = clickhouse.from_dict(clickhouse_dict)

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