| Name | Type | Description | Notes |
|---|---|---|---|
| id | str |
from aerostack.models.delete_request import DeleteRequest
# TODO update the JSON string below
json = "{}"
# create an instance of DeleteRequest from a JSON string
delete_request_instance = DeleteRequest.from_json(json)
# print the JSON string representation of the object
print DeleteRequest.to_json()
# convert the object into a dict
delete_request_dict = delete_request_instance.to_dict()
# create an instance of DeleteRequest from a dict
delete_request_form_dict = delete_request.from_dict(delete_request_dict)