Workflow Response Dto
immichpy.client.generated.models.workflow_response_dto.WorkflowResponseDto
pydantic-model
Bases: BaseModel
WorkflowResponseDto
Show JSON schema:
{
"$defs": {
"PluginTriggerType": {
"description": "Trigger type",
"enum": [
"AssetCreate",
"PersonRecognized"
],
"title": "PluginTriggerType",
"type": "string"
},
"WorkflowActionResponseDto": {
"description": "WorkflowActionResponseDto",
"properties": {
"actionConfig": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"description": "Action configuration",
"title": "Actionconfig"
},
"id": {
"description": "Action ID",
"title": "Id",
"type": "string"
},
"order": {
"anyOf": [
{
"type": "number"
},
{
"type": "integer"
}
],
"description": "Action order",
"title": "Order"
},
"pluginActionId": {
"description": "Plugin action ID",
"title": "Pluginactionid",
"type": "string"
},
"workflowId": {
"description": "Workflow ID",
"title": "Workflowid",
"type": "string"
}
},
"required": [
"actionConfig",
"id",
"order",
"pluginActionId",
"workflowId"
],
"title": "WorkflowActionResponseDto",
"type": "object"
},
"WorkflowFilterResponseDto": {
"description": "WorkflowFilterResponseDto",
"properties": {
"filterConfig": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"description": "Filter configuration",
"title": "Filterconfig"
},
"id": {
"description": "Filter ID",
"title": "Id",
"type": "string"
},
"order": {
"anyOf": [
{
"type": "number"
},
{
"type": "integer"
}
],
"description": "Filter order",
"title": "Order"
},
"pluginFilterId": {
"description": "Plugin filter ID",
"title": "Pluginfilterid",
"type": "string"
},
"workflowId": {
"description": "Workflow ID",
"title": "Workflowid",
"type": "string"
}
},
"required": [
"filterConfig",
"id",
"order",
"pluginFilterId",
"workflowId"
],
"title": "WorkflowFilterResponseDto",
"type": "object"
}
},
"description": "WorkflowResponseDto",
"properties": {
"actions": {
"description": "Workflow actions",
"items": {
"$ref": "#/$defs/WorkflowActionResponseDto"
},
"title": "Actions",
"type": "array"
},
"createdAt": {
"description": "Creation date",
"title": "Createdat",
"type": "string"
},
"description": {
"description": "Workflow description",
"title": "Description",
"type": "string"
},
"enabled": {
"description": "Workflow enabled",
"title": "Enabled",
"type": "boolean"
},
"filters": {
"description": "Workflow filters",
"items": {
"$ref": "#/$defs/WorkflowFilterResponseDto"
},
"title": "Filters",
"type": "array"
},
"id": {
"description": "Workflow ID",
"title": "Id",
"type": "string"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "Workflow name",
"title": "Name"
},
"ownerId": {
"description": "Owner user ID",
"title": "Ownerid",
"type": "string"
},
"triggerType": {
"$ref": "#/$defs/PluginTriggerType",
"description": "Workflow trigger type"
}
},
"required": [
"actions",
"createdAt",
"description",
"enabled",
"filters",
"id",
"name",
"ownerId",
"triggerType"
],
"title": "WorkflowResponseDto",
"type": "object"
}
Config:
populate_by_name:Truevalidate_assignment:Trueprotected_namespaces:()
Fields:
-
actions(List[WorkflowActionResponseDto]) -
created_at(StrictStr) -
description(StrictStr) -
enabled(StrictBool) -
filters(List[WorkflowFilterResponseDto]) -
id(StrictStr) -
name(Optional[StrictStr]) -
owner_id(StrictStr) -
trigger_type(PluginTriggerType)
actions
pydantic-field
actions: List[WorkflowActionResponseDto]
Workflow actions
created_at
pydantic-field
created_at: StrictStr
Creation date
description
pydantic-field
description: StrictStr
Workflow description
enabled
pydantic-field
enabled: StrictBool
Workflow enabled
filters
pydantic-field
filters: List[WorkflowFilterResponseDto]
Workflow filters
id
pydantic-field
id: StrictStr
Workflow ID
name
pydantic-field
name: Optional[StrictStr]
Workflow name
owner_id
pydantic-field
owner_id: StrictStr
Owner user ID
trigger_type
pydantic-field
trigger_type: PluginTriggerType
Workflow trigger type
from_dict
classmethod
from_dict(obj: Optional[Dict[str, Any]]) -> Optional[Self]
Create an instance of WorkflowResponseDto from a dict
Source code in immichpy/client/generated/models/workflow_response_dto.py
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | |
from_json
classmethod
from_json(json_str: str) -> Optional[Self]
Create an instance of WorkflowResponseDto from a JSON string
Source code in immichpy/client/generated/models/workflow_response_dto.py
75 76 77 78 | |
to_dict
to_dict() -> Dict[str, Any]
Return the dictionary representation of the model using alias.
This has the following differences from calling pydantic's
self.model_dump(by_alias=True):
Noneis only added to the output dict for nullable fields that were set at model initialization. Other fields with valueNoneare ignored.
Source code in immichpy/client/generated/models/workflow_response_dto.py
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | |
to_json
to_json() -> str
Returns the JSON representation of the model using alias
Source code in immichpy/client/generated/models/workflow_response_dto.py
70 71 72 73 | |
to_str
to_str() -> str
Returns the string representation of the model using alias
Source code in immichpy/client/generated/models/workflow_response_dto.py
66 67 68 | |