Folder

class pyrogram.raw.base.Folder

A folder

Constructors:

This base type has 1 constructor available.

Folder

Constructor of Folder.

TL Schema

folder#ff544e65
flags:#
autofill_new_broadcasts:flags.0?true
autofill_public_groups:flags.1?true
autofill_new_correspondents:flags.2?true
id:int
title:string
photo:flags.3?ChatPhoto

= Folder

Parameter Tree

Folder
├── autofill_new_broadcaststrue (optional)
├── autofill_public_groupstrue (optional)
├── autofill_new_correspondentstrue (optional)
├── idint
├── titlestring
└── photoChatPhoto (optional)
├── ChatPhotoEmpty
└── ChatPhoto
├── has_videotrue (optional)
├── photo_idlong
├── stripped_thumbbytes (optional)
└── dc_idint

Example

Folder(
    autofill_new_broadcasts=None,
    autofill_public_groups=None,
    autofill_new_correspondents=None,
    id=0,
    title="text",
    photo=ChatPhotoEmpty(),
)