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 int
Identifier uniquely determining type of the object.int
Point in time (Unix timestamp) when the story was published.boolean
True, if the story is available only to close friends.int
Unique story identifier among stories of the chat. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionint
Returns 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.Object
Returns an identifier uniquely determining type of the object.- Specified by:
getConstructor
in classTdApi.Object
- Returns:
- this.CONSTRUCTOR
-