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 user removal allowed during application removal
will_be_removed_automatically
bool
Automatic removal of database user together with application
Example
fromplesk_wp_toolkit_client.models.installation_remove_confirmation_database_user_responseimportInstallationRemoveConfirmationDatabaseUserResponse# TODO update the JSON string belowjson="{}"# create an instance of InstallationRemoveConfirmationDatabaseUserResponse from a JSON stringinstallation_remove_confirmation_database_user_response_instance=InstallationRemoveConfirmationDatabaseUserResponse.from_json(json)
# print the JSON string representation of the objectprint(InstallationRemoveConfirmationDatabaseUserResponse.to_json())
# convert the object into a dictinstallation_remove_confirmation_database_user_response_dict=installation_remove_confirmation_database_user_response_instance.to_dict()
# create an instance of InstallationRemoveConfirmationDatabaseUserResponse from a dictinstallation_remove_confirmation_database_user_response_from_dict=InstallationRemoveConfirmationDatabaseUserResponse.from_dict(installation_remove_confirmation_database_user_response_dict)