Skip to content

Bulk Id Error Reason

immichpy.client.generated.models.bulk_id_error_reason.BulkIdErrorReason

Bases: str, Enum

Error reason

from_json classmethod

from_json(json_str: str) -> Self

Create an instance of BulkIdErrorReason from a JSON string

Source code in immichpy/client/generated/models/bulk_id_error_reason.py
34
35
36
37
@classmethod
def from_json(cls, json_str: str) -> Self:
    """Create an instance of BulkIdErrorReason from a JSON string"""
    return cls(json.loads(json_str))