Raw.BotInlineResult
Generic result
botInlineResult#11965f3a flags:# id:string type:string title:flags.1?string description:flags.2?string url:flags.3?string thumb:flags.4?WebDocument content:flags.5?WebDocument send_message:BotInlineMessage = BotInlineResult;
export namespace Raw {
export class BotInlineResult {
constructor(params: {
id: string;
type: string;
title?: string;
description?: string;
url?: string;
thumb?: Raw.TypeWebDocument;
content?: Raw.TypeWebDocument;
sendMessage: Raw.TypeBotInlineMessage;
}) {}
}
}
🚫
This is a types constructor, you can’t use it as method when call invoke.
Layer: 185
Constructor ID: 0x11965f3a
Property
id
: stringResult id
type
: stringResult type (see bot api docs)
title
: string or undefinedResult title
description
: string or undefinedResult description
url
: string or undefinedUrl of article or webpage
thumb
: Raw.TypeWebDocument or undefinedThumbnail for the result
content
: Raw.TypeWebDocument or undefinedContent of the result
sendMessage
: Raw.TypeBotInlineMessageMessage to send