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

Parameters

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

Gogram Example

// Creating HelpDeepLinkInfoObj constructor
obj := &tg.HelpDeepLinkInfoObj{
    UpdateApp: nil,
    Message: "Hello, World!",
    Entities: nil,
}