# ConfirmUserDeletionRequest ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **delete_id** | **str** | The delete ID returned from the initial deletion request. | ## Example ```python from h2ogpte.rest_sync.models.confirm_user_deletion_request import ConfirmUserDeletionRequest # TODO update the JSON string below json = "{}" # create an instance of ConfirmUserDeletionRequest from a JSON string confirm_user_deletion_request_instance = ConfirmUserDeletionRequest.from_json(json) # print the JSON string representation of the object print(ConfirmUserDeletionRequest.to_json()) # convert the object into a dict confirm_user_deletion_request_dict = confirm_user_deletion_request_instance.to_dict() # create an instance of ConfirmUserDeletionRequest from a dict confirm_user_deletion_request_from_dict = ConfirmUserDeletionRequest.from_dict(confirm_user_deletion_request_dict) ```