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
├── urlstring
├── webpage_idlong
├── titlestring (optional)
├── descriptionstring (optional)
├── photo_idlong (optional)
├── authorstring (optional)
└── published_dateint (optional)

Example

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