Package org.drinkless.tdlib
Class TdApi.StoryInteractions
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.StoryInteractions
- Enclosing class:
- TdApi
Represents a list of interactions with a story.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intIdentifier uniquely determining type of the object.List of story interactions.The offset for the next request.intApproximate total number of interactions found.intApproximate total number of found forwards and reposts; always 0 for chat stories.intApproximate total number of found reactions; always 0 for chat stories. -
Constructor Summary
ConstructorsConstructorDescriptionRepresents a list of interactions with a story.StoryInteractions(int totalCount, int totalForwardCount, int totalReactionCount, TdApi.StoryInteraction[] interactions, String nextOffset) Represents a list of interactions with a story. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
Field Details
-
totalCount
public int totalCountApproximate total number of interactions found. -
totalForwardCount
public int totalForwardCountApproximate total number of found forwards and reposts; always 0 for chat stories. -
totalReactionCount
public int totalReactionCountApproximate total number of found reactions; always 0 for chat stories. -
interactions
List of story interactions. -
nextOffset
The offset for the next request. If empty, then there are no more results. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
StoryInteractions
public StoryInteractions()Represents a list of interactions with a story. -
StoryInteractions
public StoryInteractions(int totalCount, int totalForwardCount, int totalReactionCount, TdApi.StoryInteraction[] interactions, String nextOffset) Represents a list of interactions with a story.- Parameters:
totalCount- Approximate total number of interactions found.totalForwardCount- Approximate total number of found forwards and reposts; always 0 for chat stories.totalReactionCount- Approximate total number of found reactions; always 0 for chat stories.interactions- List of story interactions.nextOffset- The offset for the next request. If empty, then there are no more results.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-