Package org.drinkless.tdlib
Class TdApi.StoryInfo
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.StoryInfo
- Enclosing class:
- TdApi
Contains basic information about a story.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intIdentifier uniquely determining type of the object.intPoint in time (Unix timestamp) when the story was published.booleanTrue, if the story is available only to close friends.intUnique story identifier among stories of the chat. -
Constructor Summary
Constructors -
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
-
storyId
public int storyIdUnique story identifier among stories of the chat. -
date
public int datePoint in time (Unix timestamp) when the story was published. -
isForCloseFriends
public boolean isForCloseFriendsTrue, if the story is available only to close friends. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
StoryInfo
public StoryInfo()Contains basic information about a story. -
StoryInfo
public StoryInfo(int storyId, int date, boolean isForCloseFriends) Contains basic information about a story.- Parameters:
storyId- Unique story identifier among stories of the chat.date- Point in time (Unix timestamp) when the story was published.isForCloseFriends- True, if the story is available only to close friends.
-
-
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
-