STPPaymentMethodSEPADebit
Objective-C
@interface STPPaymentMethodSEPADebit : NSObject <STPAPIResponseDecodable>
Swift
class STPPaymentMethodSEPADebit : NSObject, STPAPIResponseDecodable
A SEPA Debit Payment Method.
-
Unavailable
You cannot directly instantiate an
STPPaymentMethodSEPADebit
. You should only use one that is part of an existingSTPPaymentMethod
object.Declaration
Objective-C
- (nonnull instancetype)init;
-
The last 4 digits of the account number.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *last4;
Swift
var last4: String? { get }
-
The account’s bank code.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *bankCode;
Swift
var bankCode: String? { get }
-
The account’s branch code
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *branchCode;
Swift
var branchCode: String? { get }
-
Two-letter ISO code representing the country of the bank account.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *country;
Swift
var country: String? { get }
-
The account’s fingerprint.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *fingerprint;
Swift
var fingerprint: String? { get }
-
The reference of the mandate accepted by your customer. - see: https://stripe.com/docs/api/sources/create#create_source-mandate
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *mandate;
Swift
var mandate: String? { get }