Skip to content

Queue Name

immichpy.client.generated.models.queue_name.QueueName

Bases: str, Enum

QueueName

from_json classmethod

from_json(json_str: str) -> Self

Create an instance of QueueName from a JSON string

Source code in immichpy/client/generated/models/queue_name.py
47
48
49
50
@classmethod
def from_json(cls, json_str: str) -> Self:
    """Create an instance of QueueName from a JSON string"""
    return cls(json.loads(json_str))