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;
}

Properties

Properties

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.