Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 1.14 KB

File metadata and controls

35 lines (29 loc) · 1.14 KB

Home > @snowplow/react-native-tracker > MessageNotificationProps

MessageNotificationProps type

MessageNotification event properties schema: iglu:com.snowplowanalytics.mobile/message_notification/jsonschema/1-0-0

Signature:

export declare type MessageNotificationProps = {
    action?: string;
    attachments?: MessageNotificationAttachmentProps[];
    body: string;
    bodyLocArgs?: string[];
    bodyLocKey?: string;
    category?: string;
    contentAvailable?: boolean;
    group?: string;
    icon?: string;
    notificationCount?: number;
    notificationTimestamp?: string;
    sound?: string;
    subtitle?: string;
    tag?: string;
    threadIdentifier?: string;
    title: string;
    titleLocArgs?: string[];
    titleLocKey?: string;
    trigger: Trigger;
};

References: MessageNotificationAttachmentProps, Trigger