LabeledPrice

class pyrogram.raw.base.LabeledPrice

Labeled pricetag

Constructors:

This base type has 1 constructor available.

LabeledPrice

This object represents a portion of the price for goods or services.

TL Schema

labeledPrice#cb296bf8
label:string
amount:long

= LabeledPrice

Parameter Tree

LabeledPrice
├── labelstring
└── amountlong

Example

LabeledPrice(
    label="text",
    amount=0,
)