SuggestedPost
- class pyrogram.raw.base.SuggestedPost
Contains info about a suggested post ».
- Constructors:
This base type has 1 constructor available.
Contains info about a suggested post ».
TL Schema
suggestedPost#e8e37e5
flags:#
accepted:flags.1?true
rejected:flags.2?true
price:flags.3?StarsAmount
schedule_date:flags.0?int
= SuggestedPost
Parameter Tree
SuggestedPost
├── accepted →
true (optional)├── rejected →
true (optional)├── price →
StarsAmount (optional)│ ├──
StarsAmount│ │ ├── amount →
long│ │ └── nanos →
int│ └──
StarsTonAmount│ └── amount →
long└── schedule_date →
int (optional)Example
SuggestedPost(
accepted=None,
rejected=None,
price=StarsAmount(
amount=0,
nanos=0
),
schedule_date=0,
)