InputRichMessageHTML

class pyrogram.raw.types.InputRichMessageHTML

Telegram API type.

Constructor of InputRichMessage.

Details:
  • Layer: 227

  • ID: DACB836A

Parameters:
  • html (str) – N/A

  • rtl (bool, optional) – N/A

  • noautolink (bool, optional) – N/A

  • files (List of InputRichFile, optional) – N/A

TL Schema

inputRichMessageHTML#dacb836a
flags:#
rtl:flags.0?true
noautolink:flags.1?true
html:string
files:flags.2?Vector<InputRichFile>

= InputRichMessage

Parameter Tree

InputRichMessageHTML
├── rtltrue (optional)
├── noautolinktrue (optional)
├── htmlstring
└── filesVector < InputRichFile > (optional)
│ ├── idstring
│ └── photoInputPhoto
│ ├── InputPhotoEmpty
│ └── InputPhoto
│ ├── idlong
│ ├── access_hashlong
│ └── file_referencebytes
├── idstring
└── documentInputDocument
└── InputDocument
├── idlong
├── access_hashlong
└── file_referencebytes

Example

InputRichMessageHTML(
    html="text",
)