package tgapi // LabeledPrice represents a price portion. // See https://core.telegram.org/bots/api#labeledprice type LabeledPrice struct { Label string `json:"label"` Amount int `json:"amount"` } // ShippingOption represents one shipping option. // See https://core.telegram.org/bots/api#shippingoption type ShippingOption struct { ID string `json:"id"` Title string `json:"title"` Prices []LabeledPrice `json:"prices"` }