PageRelatedArticle

class pyrogram.raw.base.PageRelatedArticle

Related articles

Constructors:

This base type has 1 constructor available.

PageRelatedArticle

Related article

TL Schema

pageRelatedArticle#b390dc08
flags:#
url:string
webpage_id:long
title:flags.0?string
description:flags.1?string
photo_id:flags.2?long
author:flags.3?string
published_date:flags.4?int

= PageRelatedArticle

Parameter Tree

PageRelatedArticle
├── url → string
├── webpage_id → long
├── title → string (optional)
├── description → string (optional)
├── photo_id → long (optional)
├── author → string (optional)
└── published_date → int (optional)

Example

PageRelatedArticle(
    url="https://google.com",
    webpage_id=0,
    title="text",
    description="text",
    photo_id=0,
    author="text",
    published_date=0,
)