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
├── inactive → true (optional)
├── request_write_access → true (optional)
├── has_settings → true (optional)
└── app → BotApp
└── BotApp
├── id → long
├── access_hash → long
├── short_name → string
├── title → string
├── description → string
├── photo → Photo
│ ├── PhotoEmpty
│ │ └── id → long
│ └── Photo
│ ├── has_stickers → true (optional)
│ ├── id → long
│ ├── access_hash → long
│ ├── file_reference → bytes
│ ├── date → int
│ ├── sizes → Vector < PhotoSize >
│ │ ├── PhotoSizeEmpty
│ │ ├── PhotoSize
│ │ ├── PhotoCachedSize
│ │ ├── PhotoStrippedSize
│ │ ├── PhotoSizeProgressive
│ │ └── PhotoPathSize
│ ├── video_sizes → Vector < VideoSize > (optional)
│ │ ├── VideoSize
│ │ ├── VideoSizeEmojiMarkup
│ │ └── VideoSizeStickerMarkup
│ └── dc_id → int
├── document → Document (optional)
│ ├── DocumentEmpty
│ │ └── id → long
│ └── Document
│ ├── id → long
│ ├── access_hash → long
│ ├── file_reference → bytes
│ ├── date → int
│ ├── mime_type → string
│ ├── size → long
│ ├── thumbs → Vector < PhotoSize > (optional)
│ │ ├── PhotoSizeEmpty
│ │ ├── PhotoSize
│ │ ├── PhotoCachedSize
│ │ ├── PhotoStrippedSize
│ │ ├── PhotoSizeProgressive
│ │ └── PhotoPathSize
│ ├── video_thumbs → Vector < VideoSize > (optional)
│ │ ├── VideoSize
│ │ ├── VideoSizeEmojiMarkup
│ │ └── VideoSizeStickerMarkup
│ ├── dc_id → int
│ └── attributes → Vector < DocumentAttribute >
└── hash → long

Example

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