Interface MessageSuggestedPostApproved

A suggested post was approved. Subtype of MessageContent.

interface MessageSuggestedPostApproved {
    @type: "messageSuggestedPostApproved";
    price: SuggestedPostPrice;
    send_date: number;
    suggested_post_message_id: number;
}

Properties

@type: "messageSuggestedPostApproved"

Price of the suggested post; may be null if the post is non-paid.

send_date: number

Point in time (Unix timestamp) when the post is expected to be published.

suggested_post_message_id: number

Identifier of the message with the suggested post; can be 0 if the message was deleted.