Library Response Dto
immichpy.client.generated.models.library_response_dto.LibraryResponseDto
pydantic-model
Bases: BaseModel
LibraryResponseDto
Show JSON schema:
{
"description": "LibraryResponseDto",
"properties": {
"assetCount": {
"description": "Number of assets",
"title": "Assetcount",
"type": "integer"
},
"createdAt": {
"description": "Creation date",
"format": "date-time",
"title": "Createdat",
"type": "string"
},
"exclusionPatterns": {
"description": "Exclusion patterns",
"items": {
"type": "string"
},
"title": "Exclusionpatterns",
"type": "array"
},
"id": {
"description": "Library ID",
"title": "Id",
"type": "string"
},
"importPaths": {
"description": "Import paths",
"items": {
"type": "string"
},
"title": "Importpaths",
"type": "array"
},
"name": {
"description": "Library name",
"title": "Name",
"type": "string"
},
"ownerId": {
"description": "Owner user ID",
"title": "Ownerid",
"type": "string"
},
"refreshedAt": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"type": "null"
}
],
"description": "Last refresh date",
"title": "Refreshedat"
},
"updatedAt": {
"description": "Last update date",
"format": "date-time",
"title": "Updatedat",
"type": "string"
}
},
"required": [
"assetCount",
"createdAt",
"exclusionPatterns",
"id",
"importPaths",
"name",
"ownerId",
"refreshedAt",
"updatedAt"
],
"title": "LibraryResponseDto",
"type": "object"
}
Config:
populate_by_name:Truevalidate_assignment:Trueprotected_namespaces:()
Fields:
-
asset_count(StrictInt) -
created_at(datetime) -
exclusion_patterns(List[StrictStr]) -
id(StrictStr) -
import_paths(List[StrictStr]) -
name(StrictStr) -
owner_id(StrictStr) -
refreshed_at(Optional[datetime]) -
updated_at(datetime)
asset_count
pydantic-field
asset_count: StrictInt
Number of assets
created_at
pydantic-field
created_at: datetime
Creation date
exclusion_patterns
pydantic-field
exclusion_patterns: List[StrictStr]
Exclusion patterns
id
pydantic-field
id: StrictStr
Library ID
import_paths
pydantic-field
import_paths: List[StrictStr]
Import paths
name
pydantic-field
name: StrictStr
Library name
owner_id
pydantic-field
owner_id: StrictStr
Owner user ID
refreshed_at
pydantic-field
refreshed_at: Optional[datetime]
Last refresh date
updated_at
pydantic-field
updated_at: datetime
Last update date
from_dict
classmethod
from_dict(obj: Optional[Dict[str, Any]]) -> Optional[Self]
Create an instance of LibraryResponseDto from a dict
Source code in immichpy/client/generated/models/library_response_dto.py
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | |
from_json
classmethod
from_json(json_str: str) -> Optional[Self]
Create an instance of LibraryResponseDto from a JSON string
Source code in immichpy/client/generated/models/library_response_dto.py
73 74 75 76 | |
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/library_response_dto.py
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | |
to_json
to_json() -> str
Returns the JSON representation of the model using alias
Source code in immichpy/client/generated/models/library_response_dto.py
68 69 70 71 | |
to_str
to_str() -> str
Returns the string representation of the model using alias
Source code in immichpy/client/generated/models/library_response_dto.py
64 65 66 | |