STPSourceSEPADebitDetails
Objective-C
@interface STPSourceSEPADebitDetails : NSObject <STPAPIResponseDecodable>
Swift
class STPSourceSEPADebitDetails : NSObject, STPAPIResponseDecodable
This class provides typed access to the contents of an STPSource details
dictionary for SEPA Debit sources.
-
Unavailable
You cannot directly instantiate an STPSourceSEPADebitDetails. You should only use one that is part of an existing STPSource object.
You cannot directly instantiate an
STPSourceSEPADebitDetails
. You should only use one that is part of an existingSTPSource
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 }
-
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.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *mandateReference;
Swift
var mandateReference: String? { get }
-
The details of the mandate accepted by your customer.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSURL *mandateURL;
Swift
var mandateURL: URL? { get }