Layer 224
constructor
businessIntro#5a0a066d flags:# title:string description:string sticker:flags.0?Document = BusinessIntro;

Parameters

Name Type Description
Title string Title of the introduction message (max intro_title_length_limit UTF-8 characters).
Description string Profile introduction (max intro_description_length_limit UTF-8 characters).
Sticker flags.0?Document Optional introduction sticker.

Returns

BusinessIntro

Gogram Example

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

    // Optional fields:
    // Sticker: &tg.Document{},
}