System Config Job Dto
immichpy.client.generated.models.system_config_job_dto.SystemConfigJobDto
pydantic-model
Bases: BaseModel
SystemConfigJobDto
Show JSON schema:
{
"$defs": {
"JobSettingsDto": {
"description": "JobSettingsDto",
"properties": {
"concurrency": {
"description": "Concurrency",
"minimum": 1,
"title": "Concurrency",
"type": "integer"
}
},
"required": [
"concurrency"
],
"title": "JobSettingsDto",
"type": "object"
}
},
"description": "SystemConfigJobDto",
"properties": {
"backgroundTask": {
"$ref": "#/$defs/JobSettingsDto"
},
"editor": {
"$ref": "#/$defs/JobSettingsDto"
},
"faceDetection": {
"$ref": "#/$defs/JobSettingsDto"
},
"library": {
"$ref": "#/$defs/JobSettingsDto"
},
"metadataExtraction": {
"$ref": "#/$defs/JobSettingsDto"
},
"migration": {
"$ref": "#/$defs/JobSettingsDto"
},
"notifications": {
"$ref": "#/$defs/JobSettingsDto"
},
"ocr": {
"$ref": "#/$defs/JobSettingsDto"
},
"search": {
"$ref": "#/$defs/JobSettingsDto"
},
"sidecar": {
"$ref": "#/$defs/JobSettingsDto"
},
"smartSearch": {
"$ref": "#/$defs/JobSettingsDto"
},
"thumbnailGeneration": {
"$ref": "#/$defs/JobSettingsDto"
},
"videoConversion": {
"$ref": "#/$defs/JobSettingsDto"
},
"workflow": {
"$ref": "#/$defs/JobSettingsDto"
}
},
"required": [
"backgroundTask",
"editor",
"faceDetection",
"library",
"metadataExtraction",
"migration",
"notifications",
"ocr",
"search",
"sidecar",
"smartSearch",
"thumbnailGeneration",
"videoConversion",
"workflow"
],
"title": "SystemConfigJobDto",
"type": "object"
}
Config:
populate_by_name:Truevalidate_assignment:Trueprotected_namespaces:()
Fields:
-
background_task(JobSettingsDto) -
editor(JobSettingsDto) -
face_detection(JobSettingsDto) -
library(JobSettingsDto) -
metadata_extraction(JobSettingsDto) -
migration(JobSettingsDto) -
notifications(JobSettingsDto) -
ocr(JobSettingsDto) -
search(JobSettingsDto) -
sidecar(JobSettingsDto) -
smart_search(JobSettingsDto) -
thumbnail_generation(JobSettingsDto) -
video_conversion(JobSettingsDto) -
workflow(JobSettingsDto)
from_dict
classmethod
from_dict(obj: Optional[Dict[str, Any]]) -> Optional[Self]
Create an instance of SystemConfigJobDto from a dict
Source code in immichpy/client/generated/models/system_config_job_dto.py
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 | |
from_json
classmethod
from_json(json_str: str) -> Optional[Self]
Create an instance of SystemConfigJobDto from a JSON string
Source code in immichpy/client/generated/models/system_config_job_dto.py
77 78 79 80 | |
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/system_config_job_dto.py
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 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | |
to_json
to_json() -> str
Returns the JSON representation of the model using alias
Source code in immichpy/client/generated/models/system_config_job_dto.py
72 73 74 75 | |
to_str
to_str() -> str
Returns the string representation of the model using alias
Source code in immichpy/client/generated/models/system_config_job_dto.py
68 69 70 | |