StarGiftAttributeCounter

class pyrogram.raw.base.StarGiftAttributeCounter

Indicates the total number of gifts that have the specified attribute.

Constructors:

This base type has 1 constructor available.

StarGiftAttributeCounter

Indicates the total number of gifts that have the specified attribute.

TL Schema

starGiftAttributeCounter#2eb1b658
attribute:StarGiftAttributeId
count:int

= StarGiftAttributeCounter

Parameter Tree

StarGiftAttributeCounter
├── attributeStarGiftAttributeId
│ │ └── document_idlong
│ │ └── document_idlong
│ └── backdrop_idint
└── countint

Example

StarGiftAttributeCounter(
    attribute=StarGiftAttributeIdModel(document_id=0),
    count=0,
)