Interface DeclineSuggestedPost

Declines a suggested post in a channel direct messages chat. Request type for Tdjson#declineSuggestedPost.

interface DeclineSuggestedPost {
    @type: "declineSuggestedPost";
    chat_id: number;
    comment: string;
    message_id: number;
}

Properties

@type: "declineSuggestedPost"
chat_id: number

Chat identifier of the channel direct messages chat.

comment: string

Comment for the creator of the suggested post; 0-128 characters.

message_id: number

Identifier of the message with the suggested post. Use messageProperties.can_be_declined to check whether the suggested post can be declined.