RongCloud React Native IM Wrapper - v5.12.1
    Preparing search index...

    Interface RCIMIWMessagePushOptions

    interface RCIMIWMessagePushOptions {
        disableNotification?: boolean;
        disablePushTitle?: boolean;
        pushTitle?: string;
        pushContent?: string;
        pushData?: string;
        forceShowDetailContent?: boolean;
        templateId?: string;
        voIPPush?: boolean;
        iOSPushOptions?: RCIMIWIOSPushOptions;
        androidPushOptions?: RCIMIWAndroidPushOptions;
    }
    Index

    Properties

    disableNotification?: boolean

    Send notification?

    disablePushTitle?: boolean

    Hide notification title in status bar true hides the title, false shows it By default, RC displays the user name for single chats and group name for group chats. This setting overrides it. Applies only to iOS. Android requires a title for third-party push notifications, so it’s not supported.

    pushTitle?: string

    Push title Default title rules: Built-in messages show sender's name in one-on-one chats and group name in group chats. Custom messages don't display a title by default.

    pushContent?: string

    Push content

    pushData?: string

    Remote push additional info

    forceShowDetailContent?: boolean

    Force display notification details. When the target user has set push notifications to hide message details, use this to override and show the details for this specific message.

    templateId?: string

    Push template ID Matches the language content in the template based on the locale set by setPushLanguageCode for the target user Uses default content if no match is found. Set template content in "Developer Console - Custom Push Copy". Note: Title and PushContent in RCMessagePushConfig take precedence over the corresponding title and push content in the template ID (templateId)

    voIPPush?: boolean

    Set isVoIPPush to True for iOS devices to use VoIP channel for push notifications

    iOSPushOptions?: RCIMIWIOSPushOptions

    iOS platform configurations

    androidPushOptions?: RCIMIWAndroidPushOptions

    Android platform configurations