Interface AndroidPushObject

interface AndroidPushObject {
    accent_color?: number;
    alert: string;
    buttons?: AndroidPushActionButtonObject[];
    collapse_key?: string;
    conversation_data?: AndroidConversationPushObject;
    custom_uri?: string;
    extra?: Record<string, string>;
    message_variation_id?: string;
    notification_channel_id?: string;
    notification_id?: number;
    priority?: number;
    push_icon_image_url?: string;
    send_to_most_recent_device_only?: boolean;
    send_to_sync?: boolean;
    sound?: string;
    summary_text?: string;
    time_to_live?: number;
    title: string;
}

Properties

accent_color?: number
alert: string
collapse_key?: string
conversation_data?: AndroidConversationPushObject
custom_uri?: string
extra?: Record<string, string>
message_variation_id?: string
notification_channel_id?: string
notification_id?: number
priority?: number
push_icon_image_url?: string
send_to_most_recent_device_only?: boolean
send_to_sync?: boolean
sound?: string
summary_text?: string
time_to_live?: number
title: string