Workflow Update Dto
immichpy.client.generated.models.workflow_update_dto.WorkflowUpdateDto
pydantic-model
Bases: BaseModel
WorkflowUpdateDto
Show JSON schema:
{
"$defs": {
"PluginTriggerType": {
"description": "Trigger type",
"enum": [
"AssetCreate",
"PersonRecognized"
],
"title": "PluginTriggerType",
"type": "string"
},
"WorkflowActionItemDto": {
"description": "WorkflowActionItemDto",
"properties": {
"actionConfig": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"description": "Action configuration",
"title": "Actionconfig"
},
"pluginActionId": {
"description": "Plugin action ID",
"format": "uuid",
"title": "Pluginactionid",
"type": "string"
}
},
"required": [
"pluginActionId"
],
"title": "WorkflowActionItemDto",
"type": "object"
},
"WorkflowFilterItemDto": {
"description": "WorkflowFilterItemDto",
"properties": {
"filterConfig": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter configuration",
"title": "Filterconfig"
},
"pluginFilterId": {
"description": "Plugin filter ID",
"format": "uuid",
"title": "Pluginfilterid",
"type": "string"
}
},
"required": [
"pluginFilterId"
],
"title": "WorkflowFilterItemDto",
"type": "object"
}
},
"description": "WorkflowUpdateDto",
"properties": {
"actions": {
"anyOf": [
{
"items": {
"$ref": "#/$defs/WorkflowActionItemDto"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "Workflow actions",
"title": "Actions"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Workflow description",
"title": "Description"
},
"enabled": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"description": "Workflow enabled",
"title": "Enabled"
},
"filters": {
"anyOf": [
{
"items": {
"$ref": "#/$defs/WorkflowFilterItemDto"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "Workflow filters",
"title": "Filters"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Workflow name",
"title": "Name"
},
"triggerType": {
"anyOf": [
{
"$ref": "#/$defs/PluginTriggerType"
},
{
"type": "null"
}
],
"default": null,
"description": "Workflow trigger type"
}
},
"title": "WorkflowUpdateDto",
"type": "object"
}
Config:
populate_by_name:Truevalidate_assignment:Trueprotected_namespaces:()
Fields:
-
actions(Optional[List[WorkflowActionItemDto]]) -
description(Optional[StrictStr]) -
enabled(Optional[StrictBool]) -
filters(Optional[List[WorkflowFilterItemDto]]) -
name(Optional[StrictStr]) -
trigger_type(Optional[PluginTriggerType])
actions
pydantic-field
actions: Optional[List[WorkflowActionItemDto]] = None
Workflow actions
description
pydantic-field
description: Optional[StrictStr] = None
Workflow description
enabled
pydantic-field
enabled: Optional[StrictBool] = None
Workflow enabled
filters
pydantic-field
filters: Optional[List[WorkflowFilterItemDto]] = None
Workflow filters
name
pydantic-field
name: Optional[StrictStr] = None
Workflow name
trigger_type
pydantic-field
trigger_type: Optional[PluginTriggerType] = None
Workflow trigger type
from_dict
classmethod
from_dict(obj: Optional[Dict[str, Any]]) -> Optional[Self]
Create an instance of WorkflowUpdateDto from a dict
Source code in immichpy/client/generated/models/workflow_update_dto.py
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | |
from_json
classmethod
from_json(json_str: str) -> Optional[Self]
Create an instance of WorkflowUpdateDto from a JSON string
Source code in immichpy/client/generated/models/workflow_update_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_update_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 | |
to_json
to_json() -> str
Returns the JSON representation of the model using alias
Source code in immichpy/client/generated/models/workflow_update_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_update_dto.py
66 67 68 | |