STPPaymentMethodCardChecks
@interface STPPaymentMethodCardChecks : NSObject <STPAPIResponseDecodable>
Checks on Card address and CVC.
-
Unavailable
You cannot directly instantiate an STPPaymentMethodCardChecks.
You cannot directly instantiate an
STPPaymentMethodCardChecks
.Declaration
Objective-C
- (nonnull instancetype)init;
-
If a address line1 was provided, results of the check.
Declaration
Objective-C
@property (readonly, nonatomic) STPPaymentMethodCardCheckResult addressLine1Check;
Swift
var addressLine1Check: STPPaymentMethodCardCheckResult { get }
-
If a address postal code was provided, results of the check.
Declaration
Objective-C
@property (readonly, nonatomic) STPPaymentMethodCardCheckResult addressPostalCodeCheck;
Swift
var addressPostalCodeCheck: STPPaymentMethodCardCheckResult { get }
-
If a CVC was provided, results of the check.
Declaration
Objective-C
@property (readonly, nonatomic) STPPaymentMethodCardCheckResult cvcCheck;
Swift
var cvcCheck: STPPaymentMethodCardCheckResult { get }