-
public final class AppInfo
Represents information obtained from the application settings. The values for this will be set after a connection has been made.
-
-
Field Summary
Fields Modifier and Type Field Description private String
emojiHash
private long
uploadSizeLimit
private final List<String>
premiumFeatureList
private final List<String>
attributesInUse
-
Method Summary
Modifier and Type Method Description String
getEmojiHash()
Returns current registered emoji version hash. long
getUploadSizeLimit()
Returns limits of uploadable file size. List<String>
getPremiumFeatureList()
Returns all premium feature lists that application is using. List<String>
getAttributesInUse()
Returns all attributes lists that application is using. JsonElement
toJson()
boolean
useReaction()
Returns a value whether an application is using the reaction feature. boolean
needUpdateEmoji(String prevEmojiHash)
Returns a result about if need to update all emoji list. String
toString()
-
-
Method Detail
-
getEmojiHash
String getEmojiHash()
Returns current registered emoji version hash.
-
getUploadSizeLimit
long getUploadSizeLimit()
Returns limits of uploadable file size.
-
getPremiumFeatureList
List<String> getPremiumFeatureList()
Returns all premium feature lists that application is using.
-
getAttributesInUse
List<String> getAttributesInUse()
Returns all attributes lists that application is using.
-
toJson
JsonElement toJson()
-
useReaction
boolean useReaction()
Returns a value whether an application is using the reaction feature.
-
needUpdateEmoji
boolean needUpdateEmoji(String prevEmojiHash)
Returns a result about if need to update all emoji list.
-
-
-
-