Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 904 Bytes

File metadata and controls

29 lines (20 loc) · 904 Bytes

ProcessStartDTO

Properties

Name Type Description Notes
key str

Example

from dappserver_server_sdk.models.process_start_dto import ProcessStartDTO

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

# convert the object into a dict
process_start_dto_dict = process_start_dto_instance.to_dict()
# create an instance of ProcessStartDTO from a dict
process_start_dto_form_dict = process_start_dto.from_dict(process_start_dto_dict)

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