Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.17 KB

PreviousWorkflowDto.md

File metadata and controls

28 lines (21 loc) · 1.17 KB

PreviousWorkflowDto

Properties

Name Type Description Notes
completed bool [optional]
counts SegmentsCountsDto [optional]

Example

from phrasetms_client.models.previous_workflow_dto import PreviousWorkflowDto

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

# convert the object into a dict
previous_workflow_dto_dict = previous_workflow_dto_instance.to_dict()
# create an instance of PreviousWorkflowDto from a dict
previous_workflow_dto_from_dict = PreviousWorkflowDto.from_dict(previous_workflow_dto_dict)

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