STPPaymentMethodBacsDebit
Objective-C
@interface STPPaymentMethodBacsDebit : NSObject <STPAPIResponseDecodable>
Swift
class STPPaymentMethodBacsDebit : NSObject, STPAPIResponseDecodable
A Bacs Debit Payment Method.
-
Unavailable
You cannot directly instantiate an
STPPaymentMethodBacsDebit
. You should only use one that is part of an existingSTPPaymentMethod
object.Declaration
Objective-C
- (nonnull instancetype)init;
-
This payment method’s fingerprint.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *fingerprint;
Swift
var fingerprint: String? { get }
-
The last four digits of the bank account.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *last4;
Swift
var last4: String? { get }
-
The sort code of the bank account (eg 10-88-00)
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *sortCode;
Swift
var sortCode: String? { get }