Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 868 Bytes

File metadata and controls

27 lines (19 loc) · 868 Bytes

PropertiesMysql

Properties

Name Type Description Notes

Example

from timeweb_cloud_api.models.properties_mysql import PropertiesMysql

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

# convert the object into a dict
properties_mysql_dict = properties_mysql_instance.to_dict()
# create an instance of PropertiesMysql from a dict
properties_mysql_form_dict = properties_mysql.from_dict(properties_mysql_dict)

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