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
├── idstring
├── titlestring
└── pricesVector < LabeledPrice >
└── LabeledPrice
├── labelstring
└── amountlong

Example

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