ShippingOption
public struct ShippingOption : Codable, Equatable, FunctionResult
One shipping option
-
Shipping option identifier
Declaration
Swift
public let id: String
-
Option title
Declaration
Swift
public let title: String
-
A list of objects used to calculate the total shipping costs
Declaration
Swift
public let priceParts: [LabeledPricePart]
-
One shipping option
Declaration
Swift
public init(id: String, title: String, priceParts: [LabeledPricePart])
Parameters
id
Shipping option identifier
title
Option title
priceParts
A list of objects used to calculate the total shipping costs