interface IRCIMIWGetNotificationQuietHoursCallback {
    onSuccess?: (
        startTime: string,
        spanMinutes: number,
        level: RCIMIWPushNotificationQuietHoursLevel,
    ) => void;
    onError?: (code: number) => void;
}

Properties

Properties

onSuccess?: (
    startTime: string,
    spanMinutes: number,
    level: RCIMIWPushNotificationQuietHoursLevel,
) => void
onError?: (code: number) => void