/** * ## PreparedInlineMessage * Describes an inline message to be sent by a user of a Mini App. * @see https://core.telegram.org/bots/api#preparedinlinemessage */ export type PreparedInlineMessage = { /** * Unique identifier of the prepared message */ id: string; /** * Expiration date of the prepared message, in Unix time. Expired prepared messages can no longer be used */ expiration_date: number; };