STPPaymentMethodBillingDetails
@interface STPPaymentMethodBillingDetails
: NSObject <STPAPIResponseDecodable, STPFormEncodable>
Billing information associated with a STPPaymentMethod
that may be used or required by particular types of payment methods.
-
Billing address.
Declaration
Objective-C
@property (readwrite, strong, nonatomic, nullable) STPPaymentMethodAddress *address;
Swift
var address: STPPaymentMethodAddress? { get set }
-
Email address.
Declaration
Objective-C
@property (readwrite, copy, nonatomic, nullable) NSString *email;
Swift
var email: String? { get set }
-
Full name.
Declaration
Objective-C
@property (readwrite, copy, nonatomic, nullable) NSString *name;
Swift
var name: String? { get set }
-
Billing phone number (including extension).
Declaration
Objective-C
@property (readwrite, copy, nonatomic, nullable) NSString *phone;
Swift
var phone: String? { get set }