Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 891 Bytes

File metadata and controls

29 lines (20 loc) · 891 Bytes

ProcessKillDTO

Properties

Name Type Description Notes
key str

Example

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)

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