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_broadcasts → true (optional)
├── autofill_public_groups → true (optional)
├── autofill_new_correspondents → true (optional)
├── id → int
├── title → string
└── photo → ChatPhoto (optional)
├── ChatPhotoEmpty
└── ChatPhoto
├── has_video → true (optional)
├── photo_id → long
├── stripped_thumb → bytes (optional)
└── dc_id → int

Example

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