Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1012 Bytes

File metadata and controls

30 lines (21 loc) · 1012 Bytes

WorkflowRunCreatedBy

The executor of the workflow

Properties

Name Type Description Notes
source str [optional]

Example

from twentycrm_client.models.workflow_run_created_by import WorkflowRunCreatedBy

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

# convert the object into a dict
workflow_run_created_by_dict = workflow_run_created_by_instance.to_dict()
# create an instance of WorkflowRunCreatedBy from a dict
workflow_run_created_by_from_dict = WorkflowRunCreatedBy.from_dict(workflow_run_created_by_dict)

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