Shipping Option
data class ShippingOption(id: String, title: String, prices: List<LabeledPrice>)
Content copied to clipboard
This object represents one shipping option.
Parameters
id
Shipping option identifier
title
Option title
prices
List of price portions
Constructors
ShippingOption
Link copied to clipboard
fun ShippingOption(id: String, title: String, prices: List<LabeledPrice> = emptyList())
Content copied to clipboard
Shipping option identifier
Functions
component1
Link copied to clipboard
component2
Link copied to clipboard
component3
Link copied to clipboard
copy
Link copied to clipboard
fun copy(id: String, title: String, prices: List<LabeledPrice> = emptyList()): ShippingOption
Content copied to clipboard