Asset Bulk Upload Check Result
immichpy.client.generated.models.asset_bulk_upload_check_result.AssetBulkUploadCheckResult
pydantic-model
Bases: BaseModel
AssetBulkUploadCheckResult
Show JSON schema:
{
"description": "AssetBulkUploadCheckResult",
"properties": {
"action": {
"description": "Upload action",
"title": "Action",
"type": "string"
},
"assetId": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Existing asset ID if duplicate",
"title": "Assetid"
},
"id": {
"description": "Asset ID",
"title": "Id",
"type": "string"
},
"isTrashed": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"description": "Whether existing asset is trashed",
"title": "Istrashed"
},
"reason": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Rejection reason if rejected",
"title": "Reason"
}
},
"required": [
"action",
"id"
],
"title": "AssetBulkUploadCheckResult",
"type": "object"
}
Config:
populate_by_name:Truevalidate_assignment:Trueprotected_namespaces:()
Fields:
-
action(StrictStr) -
asset_id(Optional[StrictStr]) -
id(StrictStr) -
is_trashed(Optional[StrictBool]) -
reason(Optional[StrictStr])
Validators:
action
pydantic-field
action: StrictStr
Upload action
asset_id
pydantic-field
asset_id: Optional[StrictStr] = None
Existing asset ID if duplicate
id
pydantic-field
id: StrictStr
Asset ID
is_trashed
pydantic-field
is_trashed: Optional[StrictBool] = None
Whether existing asset is trashed
reason
pydantic-field
reason: Optional[StrictStr] = None
Rejection reason if rejected
action_validate_enum
pydantic-validator
action_validate_enum(value)
Validates the enum
Source code in immichpy/client/generated/models/asset_bulk_upload_check_result.py
56 57 58 59 60 61 | |
from_dict
classmethod
from_dict(obj: Optional[Dict[str, Any]]) -> Optional[Self]
Create an instance of AssetBulkUploadCheckResult from a dict
Source code in immichpy/client/generated/models/asset_bulk_upload_check_result.py
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | |
from_json
classmethod
from_json(json_str: str) -> Optional[Self]
Create an instance of AssetBulkUploadCheckResult from a JSON string
Source code in immichpy/client/generated/models/asset_bulk_upload_check_result.py
90 91 92 93 | |
reason_validate_enum
pydantic-validator
reason_validate_enum(value)
Validates the enum
Source code in immichpy/client/generated/models/asset_bulk_upload_check_result.py
63 64 65 66 67 68 69 70 71 72 73 | |
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/asset_bulk_upload_check_result.py
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | |
to_json
to_json() -> str
Returns the JSON representation of the model using alias
Source code in immichpy/client/generated/models/asset_bulk_upload_check_result.py
85 86 87 88 | |
to_str
to_str() -> str
Returns the string representation of the model using alias
Source code in immichpy/client/generated/models/asset_bulk_upload_check_result.py
81 82 83 | |