Layer 224
constructor
inputBusinessIntro#9c469cd flags:# title:string description:string sticker:flags.0?InputDocument = InputBusinessIntro;

Parameters

Name Type Description
Title string Title of the introduction message
Description string Profile introduction
Sticker flags.0?InputDocument Optional introduction sticker.

Gogram Example

// Creating InputBusinessIntroObj constructor
obj := &tg.InputBusinessIntroObj{
    Title: "Hello, World!",
    Description: "Hello, World!",

    // Optional fields:
    // Sticker: &tg.InputDocument{ID: int64(5678901234567890), AccessHash: int64(1234567890123456), FileReference: []byte{0x01, 0x02}},
}