payments.UniqueStarGiftValueInfo

class pyrogram.raw.base.payments.UniqueStarGiftValueInfo

Information about the value of a collectible gift ».

Constructors:

This base type has 1 constructor available.

payments.UniqueStarGiftValueInfo

Information about the value of a collectible gift ».

Functions:

This object can be returned by 1 function.

payments.GetUniqueStarGiftValueInfo

Get information about the value of a collectible gift ».

TL Schema

payments.uniqueStarGiftValueInfo#512fe446
flags:#
last_sale_on_fragment:flags.1?true
value_is_average:flags.6?true
currency:string
value:long
initial_sale_date:int
initial_sale_stars:long
initial_sale_price:long
last_sale_date:flags.0?int
last_sale_price:flags.0?long
floor_price:flags.2?long
average_price:flags.3?long
listed_count:flags.4?int
fragment_listed_count:flags.5?int
fragment_listed_url:flags.5?string

= payments.UniqueStarGiftValueInfo

Parameter Tree

UniqueStarGiftValueInfo
├── last_sale_on_fragment → true (optional)
├── value_is_average → true (optional)
├── currency → string
├── value → long
├── initial_sale_date → int
├── initial_sale_stars → long
├── initial_sale_price → long
├── last_sale_date → int (optional)
├── last_sale_price → long (optional)
├── floor_price → long (optional)
├── average_price → long (optional)
├── listed_count → int (optional)
├── fragment_listed_count → int (optional)
└── fragment_listed_url → string (optional)

Example

UniqueStarGiftValueInfo(
    last_sale_on_fragment=None,
    value_is_average=None,
    currency="text",
    value=0,
    initial_sale_date=0,
    initial_sale_stars=0,
    initial_sale_price=0,
    last_sale_date=0,
    last_sale_price=0,
    floor_price=0,
    average_price=0,
    listed_count=0,
    fragment_listed_count=0,
    fragment_listed_url="text",
)