Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 781 Bytes

File metadata and controls

28 lines (20 loc) · 781 Bytes

DbType

Тип базы данных.

Properties

Name Type Description Notes

Example

from timeweb_cloud_api.models.db_type import DbType

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

# convert the object into a dict
db_type_dict = db_type_instance.to_dict()
# create an instance of DbType from a dict
db_type_form_dict = db_type.from_dict(db_type_dict)

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