CardCustomFields
public struct CardCustomFields : Codable, Sendable
The card custom fields.
-
The shipping method.
Declaration
Swift
public let shippingMethodString: String? -
The shipping method.
Declaration
Swift
public var shippingMethod: CardShippingMethod? { get } -
Name on card. Character limits depend on card product.
Declaration
Swift
public let nameOnCard: String? -
ID of the carrier in which this card should be shipped.
Declaration
Swift
public let carrierId: String? -
Message to be printed in the carrier.
Declaration
Swift
public let carrierMessage: String? -
Custom text for line 2 of the card.
Declaration
Swift
public let line2Text: String? -
Auxiliary constructor.
Declaration
Swift
public init( shippingMethod: CardShippingMethod? = nil, nameOnCard: String? = nil, carrierId: String? = nil, carrierMessage: String? = nil, line2Text: String? = nil )Parameters
shippingMethodThe shipping method.
nameOnCardName on card. Character limits depend on card product.
carrierIdID of the carrier in which this card should be shipped.
carrierMessageMessage to be printed in the carrier.
line2TextCustom text for line 2 of the card.
View on GitHub