ShippingOption
- class pyrogram.raw.base.ShippingOption
Shipping options
- Constructors:
This base type has 1 constructor available.
Shipping option
TL Schema
shippingOption#b6213cdf
id:string
title:string
prices:Vector<LabeledPrice>
= ShippingOption
Parameter Tree
ShippingOption
├── id →
string├── title →
string└── prices →
Vector < LabeledPrice >└──
LabeledPrice├── label →
string└── amount →
longExample
ShippingOption(
id="text",
title="text",
prices=[
LabeledPrice(
label="text",
amount=0
)
],
)