Package 

Class BatchPushData

    • Constructor Summary

      Constructors 
      Constructor Description
      BatchPushData(Context context, Intent intent) Build a BatchPushData object out of a Batch Push intent
    • Method Summary

      Modifier and Type Method Description
      boolean hasDeeplink() Does this push contains a deeplink
      String getDeeplink() Get the deeplink url contained in this push.
      boolean hasCustomLargeIcon() Does this push contains a custom large icon
      String getCustomLargeIconURL() Get the custom large icon url contained in this push.
      boolean hasBigPicture() Does this push contains a big picture
      String getBigPictureURL() Get the big picture url contained in this push.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • BatchPushData

        BatchPushData(Context context, Intent intent)
        Build a BatchPushData object out of a Batch Push intent
        Parameters:
        context - context of your application
        intent - Batch push intent
    • Method Detail

      • hasDeeplink

         boolean hasDeeplink()

        Does this push contains a deeplink

      • getDeeplink

         String getDeeplink()

        Get the deeplink url contained in this push.You should always check if the push contains a deeplink using hasDeeplink

      • hasCustomLargeIcon

         boolean hasCustomLargeIcon()

        Does this push contains a custom large icon

      • getCustomLargeIconURL

         String getCustomLargeIconURL()

        Get the custom large icon url contained in this push.You should always check if the push contains a custom large icon using hasCustomLargeIcon.The url returned by this method is already optimized for the device, you have to download the image and use it in the notification

      • hasBigPicture

         boolean hasBigPicture()

        Does this push contains a big picture

      • getBigPictureURL

         String getBigPictureURL()

        Get the big picture url contained in this push.You should always check if the push contains a big picture using hasBigPicture.The url returned by this method is already optimized for the device, you have to download the image and use it in the notification