Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 952 Bytes

File metadata and controls

29 lines (20 loc) · 952 Bytes

DeleteByTypeRequest

Properties

Name Type Description Notes
type str

Example

from aerostack.models.delete_by_type_request import DeleteByTypeRequest

# TODO update the JSON string below
json = "{}"
# create an instance of DeleteByTypeRequest from a JSON string
delete_by_type_request_instance = DeleteByTypeRequest.from_json(json)
# print the JSON string representation of the object
print DeleteByTypeRequest.to_json()

# convert the object into a dict
delete_by_type_request_dict = delete_by_type_request_instance.to_dict()
# create an instance of DeleteByTypeRequest from a dict
delete_by_type_request_form_dict = delete_by_type_request.from_dict(delete_by_type_request_dict)

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