Member Junction
    Preparing search index...

    Result of sending a notification

    interface NotificationResult {
        deliveryChannels: DeliveryChannels;
        emailSent?: boolean;
        errors?: string[];
        inAppNotificationId?: string;
        smsSent?: boolean;
        success: boolean;
    }
    Index

    Properties

    deliveryChannels: DeliveryChannels

    Actual delivery channels used (after resolving preferences)

    emailSent?: boolean

    Whether email was sent successfully

    errors?: string[]

    Any errors that occurred during notification delivery

    inAppNotificationId?: string

    ID of the created in-app notification (if created)

    smsSent?: boolean

    Whether SMS was sent successfully

    success: boolean

    Whether the notification operation succeeded overall