| Name | Type | Description | Notes |
|---|---|---|---|
| entity_type | str | The type of data to bulk delete in a session. Currently, only `USERS` is supported. | [optional] |
| profiles | List[IdentitySourceUserProfileForDelete] | Array of profiles to be deleted | [optional] |
from okta.models.bulk_delete_request_body import BulkDeleteRequestBody
# TODO update the JSON string below
json = "{}"
# create an instance of BulkDeleteRequestBody from a JSON string
bulk_delete_request_body_instance = BulkDeleteRequestBody.from_json(json)
# print the JSON string representation of the object
print(BulkDeleteRequestBody.to_json())
# convert the object into a dict
bulk_delete_request_body_dict = bulk_delete_request_body_instance.to_dict()
# create an instance of BulkDeleteRequestBody from a dict
bulk_delete_request_body_from_dict = BulkDeleteRequestBody.from_dict(bulk_delete_request_body_dict)