Package org.drinkless.tdlib
Class TdApi.PinChatMessage
- Enclosing class:
- TdApi
Pins a message in a chat; requires canPinMessages member right if the chat is a basic group or supergroup, or canEditMessages administrator right if the chat is a channel.
Returns Ok
-
Nested Class Summary
Nested classes/interfaces inherited from class org.drinkless.tdlib.TdApi.Function
TdApi.Function.Constructors -
Field Summary
FieldsModifier and TypeFieldDescriptionlongIdentifier of the chat.static final intIdentifier uniquely determining type of the object.booleanPass true to disable notification about the pinned message.longIdentifier of the new pinned message.booleanPass true to pin the message only for self; private chats only. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which pins a message in a chat; requires canPinMessages member right if the chat is a basic group or supergroup, or canEditMessages administrator right if the chat is a channel.PinChatMessage(long chatId, long messageId, boolean disableNotification, boolean onlyForSelf) Creates a function, which pins a message in a chat; requires canPinMessages member right if the chat is a basic group or supergroup, or canEditMessages administrator right if the chat is a channel. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
Field Details
-
chatId
public long chatIdIdentifier of the chat. -
messageId
public long messageIdIdentifier of the new pinned message. -
disableNotification
public boolean disableNotificationPass true to disable notification about the pinned message. Notifications are always disabled in channels and private chats. -
onlyForSelf
public boolean onlyForSelfPass true to pin the message only for self; private chats only. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
PinChatMessage
public PinChatMessage()Default constructor for a function, which pins a message in a chat; requires canPinMessages member right if the chat is a basic group or supergroup, or canEditMessages administrator right if the chat is a channel.Returns
Ok -
PinChatMessage
public PinChatMessage(long chatId, long messageId, boolean disableNotification, boolean onlyForSelf) Creates a function, which pins a message in a chat; requires canPinMessages member right if the chat is a basic group or supergroup, or canEditMessages administrator right if the chat is a channel.Returns
Ok- Parameters:
chatId- Identifier of the chat.messageId- Identifier of the new pinned message.disableNotification- Pass true to disable notification about the pinned message. Notifications are always disabled in channels and private chats.onlyForSelf- Pass true to pin the message only for self; private chats only.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Function<TdApi.Ok>- Returns:
- this.CONSTRUCTOR
-