@cpod/sdk - v0.2.7
    Preparing search index...

    Interface UpdateNotificationPreferencesRequest

    Update notification preferences request

    interface UpdateNotificationPreferencesRequest {
        global_enabled?: boolean;
        quiet_hours?: {
            enabled: boolean;
            start: string;
            end: string;
            timezone: string;
        };
        channels?: Partial<Record<NotificationChannel, Partial<ChannelPreference>>>;
        categories?: Partial<
            Record<NotificationCategory, Partial<CategoryPreference>>,
        >;
    }
    Index

    Properties

    global_enabled?: boolean
    quiet_hours?: { enabled: boolean; start: string; end: string; timezone: string }