Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 858 Bytes

File metadata and controls

29 lines (20 loc) · 858 Bytes

DeleteRequest

Properties

Name Type Description Notes
id str

Example

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)

[Back to Model list] [Back to API list] [Back to README]