Skip to content

Notification Level

immichpy.client.generated.models.notification_level.NotificationLevel

Bases: str, Enum

NotificationLevel

from_json classmethod

from_json(json_str: str) -> Self

Create an instance of NotificationLevel from a JSON string

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