Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.23 KB

File metadata and controls

32 lines (23 loc) · 1.23 KB

WorkflowRunForResponseCreatedBy

The executor of the workflow

Properties

Name Type Description Notes
source str [optional]
workspace_member_id UUID [optional]
name str [optional]

Example

from twentycrm_client.models.workflow_run_for_response_created_by import WorkflowRunForResponseCreatedBy

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

# convert the object into a dict
workflow_run_for_response_created_by_dict = workflow_run_for_response_created_by_instance.to_dict()
# create an instance of WorkflowRunForResponseCreatedBy from a dict
workflow_run_for_response_created_by_from_dict = WorkflowRunForResponseCreatedBy.from_dict(workflow_run_for_response_created_by_dict)

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