STPPaymentMethodSEPADebit
public class STPPaymentMethodSEPADebit : NSObject, STPAPIResponseDecodable
A SEPA Debit Payment Method.
-
Declaration
Swift
@objc private(set) public var allResponseFields: [AnyHashable : Any] { get }
-
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 }
-
The account’s branch code
Declaration
Swift
@objc public private(set) var branchCode: 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. - seealso: https://stripe.com/docs/api/sources/create#create_source-mandate
Declaration
Swift
@objc public private(set) var mandate: String? { get }
-
Declaration
Swift
@objc public class func decodedObject(fromAPIResponse response: [AnyHashable : Any]?) -> `Self`?