Layer 220
constructor
help.deepLinkInfo#6a4ee832 flags:# update_app:flags.0?true message:string entities:flags.1?Vector<MessageEntity> = help.DeepLinkInfo;

Parameters

Name Type Description
Flags # Flags, see TL conditional fields
UpdateApp flags.0?true An update of the app is required to parse this link
Message string Message to show to the user
Entities Vector<MessageEntity> Message entities for styled text

Gogram Example

// Creating HelpDeepLinkInfo constructor
obj := &tg.HelpDeepLinkInfo{
    Message: "...",

    // Optional fields:
    // UpdateApp: true,
    // Entities: []tg.MessageEntity{&tg.MessageEntityBold{Offset: 0, Length: 4}},
}