ShippingOption

class pyrogram.raw.base.ShippingOption

Shipping options

Constructors:

This base type has 1 constructor available.

ShippingOption

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 → long

Example

ShippingOption(
    id="text",
    title="text",
    prices=[
            LabeledPrice(
                label="text",
                amount=0
            )
        ],
)