messages.BotApp

class pyrogram.raw.base.messages.BotApp

Contains information about a direct link Mini App

Constructors:

This base type has 1 constructor available.

messages.BotApp

Contains information about a direct link Mini App

Functions:

This object can be returned by 1 function.

messages.GetBotApp

Obtain information about a direct link Mini App

TL Schema

messages.botApp#eb50adf5
flags:#
inactive:flags.0?true
request_write_access:flags.1?true
has_settings:flags.2?true
app:BotApp

= messages.BotApp

Parameter Tree

BotApp
├── inactivetrue (optional)
├── request_write_accesstrue (optional)
├── has_settingstrue (optional)
└── appBotApp
└── BotApp
├── idlong
├── access_hashlong
├── short_namestring
├── titlestring
├── descriptionstring
├── photoPhoto
│ ├── PhotoEmpty
│ │ └── idlong
│ └── Photo
│ ├── has_stickerstrue (optional)
│ ├── idlong
│ ├── access_hashlong
│ ├── file_referencebytes
│ ├── dateint
│ ├── sizesVector < PhotoSize >
│ │ ├── PhotoSizeEmpty
│ │ ├── PhotoSize
│ │ ├── PhotoCachedSize
│ │ ├── PhotoStrippedSize
│ │ ├── PhotoSizeProgressive
│ │ └── PhotoPathSize
│ ├── video_sizesVector < VideoSize > (optional)
│ │ ├── VideoSize
│ │ ├── VideoSizeEmojiMarkup
│ │ └── VideoSizeStickerMarkup
│ └── dc_idint
├── documentDocument (optional)
│ ├── DocumentEmpty
│ │ └── idlong
│ └── Document
│ ├── idlong
│ ├── access_hashlong
│ ├── file_referencebytes
│ ├── dateint
│ ├── mime_typestring
│ ├── sizelong
│ ├── thumbsVector < PhotoSize > (optional)
│ │ ├── PhotoSizeEmpty
│ │ ├── PhotoSize
│ │ ├── PhotoCachedSize
│ │ ├── PhotoStrippedSize
│ │ ├── PhotoSizeProgressive
│ │ └── PhotoPathSize
│ ├── video_thumbsVector < VideoSize > (optional)
│ │ ├── VideoSize
│ │ ├── VideoSizeEmojiMarkup
│ │ └── VideoSizeStickerMarkup
│ ├── dc_idint
│ └── attributesVector < DocumentAttribute >
└── hashlong

Example

BotApp(
    inactive=None,
    request_write_access=None,
    has_settings=None,
    app=BotAppNotModified(),
)