CartItemPrice

open class CartItemPrice : Codable

Undocumented

  • The price for this cart item

    Declaration

    Swift

    public var amount: Int
  • The price for this cart item including tax

    Declaration

    Swift

    public var includes_tax: Bool?
  • Create a new address with first name and last name

    Declaration

    Swift

    public init(
        amount: Int,
        includes_tax: Bool?)