đ§ decline_suggested_post
Declines a suggested post in a direct messages chat.
âī¸ Parameters
chat_id
(int
): Unique identifier for the target direct messages chatmessage_id
(int
): Identifier of a suggested post message to declinecomment
(str
) (optional
): Comment for the creator of the suggested post; 0-128 characters
đ˛ Returns
bool
đ Examples
-đĒĢ Required Parameters
await bot.decline_suggested_post(
chat_id=your_chat_id_here,
message_id=your_message_id_here
)
-đ All Parameters
await bot.decline_suggested_post(
chat_id=your_chat_id_here,
message_id=your_message_id_here,
comment=your_comment_here
)