InputBusinessIntro

class pyrogram.raw.types.InputBusinessIntro

Telegram Business introduction ».

Constructor of InputBusinessIntro.

Details:
  • Layer: 227

  • ID: 9C469CD

Parameters:
  • title (str) – Title of the introduction message

  • description (str) – Profile introduction

  • sticker (InputDocument, optional) – Optional introduction sticker.

TL Schema

inputBusinessIntro#9c469cd
flags:#
title:string
description:string
sticker:flags.0?InputDocument

= InputBusinessIntro

Parameter Tree

InputBusinessIntro
├── title → string
├── description → string
└── sticker → InputDocument (optional)
└── InputDocument
├── id → long
├── access_hash → long
└── file_reference → bytes

Example

InputBusinessIntro(
    title="text",
    description="text",
)