Package com.linecorp.bot.model
Class Broadcast
- java.lang.Object
-
- com.linecorp.bot.model.Broadcast
-
public final class Broadcast extends java.lang.ObjectSends push messages to multiple users at any time.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)java.util.List<Message>getMessages()List of Message objects.inthashCode()booleanisNotificationDisabled()Whether sends a push notification to message receivers or not.java.lang.StringtoString()
-
-
-
Method Detail
-
getMessages
public java.util.List<Message> getMessages()
List of Message objects.Max: 5
-
isNotificationDisabled
public boolean isNotificationDisabled()
Whether sends a push notification to message receivers or not. If true, the user doesn't receive a push notification when the message is sent. And if false, the user receives a push notification when the message is sent (unless they have disabled push notifications in LINE and/or their device).
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-