STPPaymentIntentShippingDetailsParams
public class STPPaymentIntentShippingDetailsParams : NSObject
extension STPPaymentIntentShippingDetailsParams: STPFormEncodable
extension STPPaymentIntentShippingDetailsParams: NSCopying
Shipping information for a PaymentIntent
-
Shipping address.
Declaration
Swift
@objc public var address: STPPaymentIntentShippingDetailsAddressParams
-
Recipient name.
Declaration
Swift
@objc public var name: String
-
The delivery service that shipped a physical product, such as Fedex, UPS, USPS, etc.
Declaration
Swift
@objc public var carrier: String?
-
Recipient phone (including extension).
Declaration
Swift
@objc public var phone: String?
-
The tracking number for a physical product, obtained from the delivery service. If multiple tracking numbers were generated for this purchase, please separate them with commas.
Declaration
Swift
@objc public var trackingNumber: String?
-
Initialize an
STPPaymentIntentShippingDetailsParams
with required properties.Declaration
Swift
@objc public init(address: STPPaymentIntentShippingDetailsAddressParams, name: String)
-
Declaration
Swift
@objc public class func propertyNamesToFormFieldNamesMapping() -> [String : String]
-
Declaration
Swift
@objc public class func rootObjectName() -> String?