fragment.CollectibleInfo

class pyrogram.raw.base.fragment.CollectibleInfo

Info about a fragment collectible.

Constructors:

This base type has 1 constructor available.

fragment.CollectibleInfo

Info about a fragment collectible.

Functions:

This object can be returned by 1 function.

fragment.GetCollectibleInfo

Fetch information about a fragment collectible, see here » for more info on the full flow.

TL Schema

fragment.collectibleInfo#6ebdff91
purchase_date:int
currency:string
amount:long
crypto_currency:string
crypto_amount:long
url:string

= fragment.CollectibleInfo

Parameter Tree

CollectibleInfo
├── purchase_dateint
├── currencystring
├── amountlong
├── crypto_currencystring
├── crypto_amountlong
└── urlstring

Example

CollectibleInfo(
    purchase_date=0,
    currency="text",
    amount=0,
    crypto_currency="text",
    crypto_amount=0,
    url="https://google.com",
)