Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 965 Bytes

File metadata and controls

31 lines (22 loc) · 965 Bytes

ProcessRunDTO

Properties

Name Type Description Notes
command str
args str
options ProcessAddDTO

Example

from dappserver_server_sdk.models.process_run_dto import ProcessRunDTO

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

# convert the object into a dict
process_run_dto_dict = process_run_dto_instance.to_dict()
# create an instance of ProcessRunDTO from a dict
process_run_dto_form_dict = process_run_dto.from_dict(process_run_dto_dict)

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