Username

class pyrogram.raw.base.Username

Contains information about a username

Constructors:

This base type has 1 constructor available.

Username

Contains information about a username.

TL Schema

username#b4073647
flags:#
editable:flags.0?true
active:flags.1?true
username:string

= Username

Parameter Tree

Username
├── editable → true (optional)
├── active → true (optional)
└── username → string

Example

Username(
    editable=None,
    active=None,
    username="text",
)