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