SearchPostsFlood

class pyrogram.raw.base.SearchPostsFlood

Indicates if the specified global post search » requires payment.

Constructors:

This base type has 1 constructor available.

SearchPostsFlood

Indicates if the specified global post search » requires payment.

Functions:

This object can be returned by 1 function.

channels.CheckSearchPostsFlood

Check if the specified global post search » requires payment.

TL Schema

searchPostsFlood#3e0b5b6a
flags:#
query_is_free:flags.0?true
total_daily:int
remains:int
wait_till:flags.1?int
stars_amount:long

= SearchPostsFlood

Parameter Tree

SearchPostsFlood
├── query_is_freetrue (optional)
├── total_dailyint
├── remainsint
├── wait_tillint (optional)
└── stars_amountlong

Example

SearchPostsFlood(
    query_is_free=None,
    total_daily=0,
    remains=0,
    wait_till=0,
    stars_amount=0,
)