Package org.drinkless.tdlib
Class TdApi.SearchPublicStoriesByTag
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.Function<TdApi.FoundStories>
org.drinkless.tdlib.TdApi.SearchPublicStoriesByTag
- Enclosing class:
- TdApi
Searches for public stories containing the given hashtag or cashtag. For optimal performance, the number of returned stories is chosen by TDLib and can be smaller than the specified limit.
Returns FoundStories
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Identifier uniquely determining type of the object.int
The maximum number of stories to be returned; up to 100.Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results.long
Identifier of the chat that posted the stories to search for; pass 0 to search stories in all chats.Hashtag or cashtag to search for. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which searches for public stories containing the given hashtag or cashtag.SearchPublicStoriesByTag
(long storyPosterChatId, String tag, String offset, int limit) Creates a function, which searches for public stories containing the given hashtag or cashtag. -
Method Summary
Modifier and TypeMethodDescriptionint
Returns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
Field Details
-
storyPosterChatId
public long storyPosterChatIdIdentifier of the chat that posted the stories to search for; pass 0 to search stories in all chats. -
tag
Hashtag or cashtag to search for. -
offset
Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results. -
limit
public int limitThe maximum number of stories to be returned; up to 100. For optimal performance, the number of returned stories is chosen by TDLib and can be smaller than the specified limit. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
SearchPublicStoriesByTag
public SearchPublicStoriesByTag()Default constructor for a function, which searches for public stories containing the given hashtag or cashtag. For optimal performance, the number of returned stories is chosen by TDLib and can be smaller than the specified limit.Returns
FoundStories
-
SearchPublicStoriesByTag
Creates a function, which searches for public stories containing the given hashtag or cashtag. For optimal performance, the number of returned stories is chosen by TDLib and can be smaller than the specified limit.Returns
FoundStories
- Parameters:
storyPosterChatId
- Identifier of the chat that posted the stories to search for; pass 0 to search stories in all chats.tag
- Hashtag or cashtag to search for.offset
- Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results.limit
- The maximum number of stories to be returned; up to 100. For optimal performance, the number of returned stories is chosen by TDLib and can be smaller than the specified limit.
-
-
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
-