-
@Deprecated() public class BatchPushData
Convenience object to retrieve Batch data out of a Batch Push intent
-
-
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 booleanhasDeeplink()Does this push contains a deeplink StringgetDeeplink()Get the deeplink url contained in this push. booleanhasCustomLargeIcon()Does this push contains a custom large icon StringgetCustomLargeIconURL()Get the custom large icon url contained in this push. booleanhasBigPicture()Does this push contains a big picture StringgetBigPictureURL()Get the big picture url contained in this push. -
-
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
-
-
-
-