WorkflowSessionTag
Properties
Name |
Type |
Description |
Notes |
technical_tags |
List[Optional[str]] |
Technical tags |
[optional] |
user_tags |
List[Optional[str]] |
User tags |
[optional] |
Example
from libica.openapi.v3.models.workflow_session_tag import WorkflowSessionTag
# TODO update the JSON string below
json = "{}"
# create an instance of WorkflowSessionTag from a JSON string
workflow_session_tag_instance = WorkflowSessionTag.from_json(json)
# print the JSON string representation of the object
print(WorkflowSessionTag.to_json())
# convert the object into a dict
workflow_session_tag_dict = workflow_session_tag_instance.to_dict()
# create an instance of WorkflowSessionTag from a dict
workflow_session_tag_from_dict = WorkflowSessionTag.from_dict(workflow_session_tag_dict)
[Back to Model list] [Back to API list] [Back to README]