Type Alias CalendarNotificationDto

CalendarNotificationDto: {
    altType: "calendar";
    altId: string;
    receiverType: CalendarNotificationReceiverType;
    channel: CalendarNotificationChannel;
    notificationType: CalendarNotificationType;
    isActive?: boolean;
    templateId?: string;
    body?: string;
    subject?: string;
    afterTime?: CalendarNotificationTime;
    beforeTime?: CalendarNotificationTime;
    additionalEmailIds?: string[];
    selectedUsers?: string[];
    fromAddress?: string;
    fromName?: string;
}

Type declaration