STPPaymentMethodAUBECSDebit
Objective-C
@interface STPPaymentMethodAUBECSDebit : NSObject <STPAPIResponseDecodable>
Swift
class STPPaymentMethodAUBECSDebit : NSObject, STPAPIResponseDecodable
An AU BECS Debit Payment Method.
-
Unavailable
You cannot directly instantiate an
STPPaymentMethodAUBECSDebit
. You should only use one that is part of an existingSTPPaymentMethod
object.Declaration
Objective-C
- (nonnull instancetype)init;
-
Six-digit number identifying bank and branch associated with this bank account.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull bsbNumber;
Swift
var bsbNumber: String { get }
-
Uniquely identifies this particular bank account. You can use this attribute to check whether two bank accounts are the same.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull fingerprint;
Swift
var fingerprint: String { get }
-
Last four digits of the bank account number.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull last4;
Swift
var last4: String { get }