AniLink - v1.29.2
    Preparing search index...

    NotificationOptionInput is an interface representing the options for a notification. It includes the type and enabled status each having their own properties.

    interface NotificationOptionInput {
        enabled: boolean;
        type: string;
    }
    Index
    enabled: boolean

    enabled is a boolean representing whether the notification is enabled or not.

    type: string

    type is a string representing the type of the notification.