STPSourceSEPADebitDetails
public class STPSourceSEPADebitDetails : NSObject, STPAPIResponseDecodable
This class provides typed access to the contents of an STPSource details
dictionary for SEPA Debit sources.
-
The last 4 digits of the account number.
Declaration
Swift
@objc public private(set) var last4: String? { get }
-
The account’s bank code.
Declaration
Swift
@objc public private(set) var bankCode: String? { get }
-
Two-letter ISO code representing the country of the bank account.
Declaration
Swift
@objc public private(set) var country: String? { get }
-
The account’s fingerprint.
Declaration
Swift
@objc public private(set) var fingerprint: String? { get }
-
The reference of the mandate accepted by your customer.
Declaration
Swift
@objc public private(set) var mandateReference: String? { get }
-
The details of the mandate accepted by your customer.
Declaration
Swift
@objc public private(set) var mandateURL: URL? { get }
-
Declaration
Swift
@objc public private(set) var allResponseFields: [AnyHashable : Any] { get }
-
Declaration
Swift
public class func decodedObject(fromAPIResponse response: [AnyHashable : Any]?) -> `Self`?