You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Optional database name. Generated when omitted. Letters, digits and underscores; must not start with an underscore. Up to 14 characters without the account username prefix (`u123456789_`), which is added automatically when missing. With the prefix the full name is 12 to 25 characters.
[optional]
user
str
Optional database user. Generated when omitted. Letters, digits and underscores; must not start with an underscore. Up to 14 characters without the account username prefix (`u123456789_`), which is added automatically when missing. With the prefix the full user is 12 to 25 characters.
[optional]
Example
fromhostinger_api.models.hosting_v1_databases_setup_database_requestimportHostingV1DatabasesSetupDatabaseRequest# TODO update the JSON string belowjson="{}"# create an instance of HostingV1DatabasesSetupDatabaseRequest from a JSON stringhosting_v1_databases_setup_database_request_instance=HostingV1DatabasesSetupDatabaseRequest.from_json(json)
# print the JSON string representation of the objectprint(HostingV1DatabasesSetupDatabaseRequest.to_json())
# convert the object into a dicthosting_v1_databases_setup_database_request_dict=hosting_v1_databases_setup_database_request_instance.to_dict()
# create an instance of HostingV1DatabasesSetupDatabaseRequest from a dicthosting_v1_databases_setup_database_request_from_dict=HostingV1DatabasesSetupDatabaseRequest.from_dict(hosting_v1_databases_setup_database_request_dict)