help.DeepLinkInfo

class pyrogram.raw.base.help.DeepLinkInfo

Contains information about an unsupported deep link »

Constructors:

This base type has 2 constructors available.

help.DeepLinkInfo

Deep link info, see the here for more details

help.DeepLinkInfoEmpty

Deep link info empty

Functions:

This object can be returned by 1 function.

help.GetDeepLinkInfo

Get info about an unsupported deep link, see here for more info ».

TL Schema

help.deepLinkInfo#6a4ee832
flags:#
update_app:flags.0?true
message:string
entities:flags.1?Vector<MessageEntity>

= help.DeepLinkInfo

Parameter Tree

DeepLinkInfo
├── update_apptrue (optional)
├── messagestring
└── entitiesVector < MessageEntity > (optional)
│ ├── offsetint
│ └── lengthint
│ ├── offsetint
│ └── lengthint
│ ├── offsetint
│ └── lengthint
│ ├── offsetint
│ └── lengthint
│ ├── offsetint
│ └── lengthint
│ ├── offsetint
│ └── lengthint
│ ├── offsetint
│ └── lengthint
│ ├── offsetint
│ └── lengthint
│ ├── offsetint
│ └── lengthint
│ ├── offsetint
│ ├── lengthint
│ └── languagestring
│ ├── offsetint
│ ├── lengthint
│ └── urlstring
│ ├── offsetint
│ ├── lengthint
│ └── user_idlong
│ ├── offsetint
│ ├── lengthint
│ └── user_idInputUser
│ ├── InputUserEmpty
│ ├── InputUserSelf
│ ├── InputUser
│ └── InputUserFromMessage
│ ├── offsetint
│ └── lengthint
│ ├── offsetint
│ └── lengthint
│ ├── offsetint
│ └── lengthint
│ ├── offsetint
│ └── lengthint
│ ├── offsetint
│ └── lengthint
│ ├── offsetint
│ └── lengthint
│ ├── offsetint
│ ├── lengthint
│ └── document_idlong
│ ├── collapsedtrue (optional)
│ ├── offsetint
│ └── lengthint
├── relativetrue (optional)
├── short_timetrue (optional)
├── long_timetrue (optional)
├── short_datetrue (optional)
├── long_datetrue (optional)
├── day_of_weektrue (optional)
├── offsetint
├── lengthint
└── dateint

Example

DeepLinkInfo(
    update_app=None,
    message="Hello",
    entities=[
            MessageEntityUnknown(
                offset=0,
                length=0
            )
        ],
)