| Name | Type | Description | Notes |
|---|---|---|---|
| key | str |
from dappserver_server_sdk.models.process_stop_dto import ProcessStopDTO
# TODO update the JSON string below
json = "{}"
# create an instance of ProcessStopDTO from a JSON string
process_stop_dto_instance = ProcessStopDTO.from_json(json)
# print the JSON string representation of the object
print ProcessStopDTO.to_json()
# convert the object into a dict
process_stop_dto_dict = process_stop_dto_instance.to_dict()
# create an instance of ProcessStopDTO from a dict
process_stop_dto_form_dict = process_stop_dto.from_dict(process_stop_dto_dict)