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
Database username to create (alphanumeric and underscores).
password
str
Password for the database user (requires mixed case, letters, and numbers).
host
str
Host the user connects from (IPv4, IPv6, % wildcard, or localhost). Defaults to localhost.
[optional]
Example
fromhostinger_api.models.agency_hosting_v1_websites_databases_users_create_database_user_requestimportAgencyHostingV1WebsitesDatabasesUsersCreateDatabaseUserRequest# TODO update the JSON string belowjson="{}"# create an instance of AgencyHostingV1WebsitesDatabasesUsersCreateDatabaseUserRequest from a JSON stringagency_hosting_v1_websites_databases_users_create_database_user_request_instance=AgencyHostingV1WebsitesDatabasesUsersCreateDatabaseUserRequest.from_json(json)
# print the JSON string representation of the objectprint(AgencyHostingV1WebsitesDatabasesUsersCreateDatabaseUserRequest.to_json())
# convert the object into a dictagency_hosting_v1_websites_databases_users_create_database_user_request_dict=agency_hosting_v1_websites_databases_users_create_database_user_request_instance.to_dict()
# create an instance of AgencyHostingV1WebsitesDatabasesUsersCreateDatabaseUserRequest from a dictagency_hosting_v1_websites_databases_users_create_database_user_request_from_dict=AgencyHostingV1WebsitesDatabasesUsersCreateDatabaseUserRequest.from_dict(agency_hosting_v1_websites_databases_users_create_database_user_request_dict)