STPPaymentMethodCardChecks
Objective-C
@interface STPPaymentMethodCardChecks : NSObject <STPAPIResponseDecodable>
Swift
class 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;
-
Deprecated
Card check values are no longer returned to clients using publishable keys. Retrieve them on your server using yoursecret key instead.
If a address line1 was provided, results of the check.
@deprecated Card check values are no longer returned to clients using publishable keys. Retrieve them on your server using yoursecret key instead.
Declaration
Objective-C
@property (nonatomic, readonly) STPPaymentMethodCardCheckResult addressLine1Check;
Swift
var addressLine1Check: STPPaymentMethodCardCheckResult { get }
-
Deprecated
Card check values are no longer returned to clients using publishable keys. Retrieve them on your server using yoursecret key instead.
If a address postal code was provided, results of the check.
@deprecated Card check values are no longer returned to clients using publishable keys. Retrieve them on your server using yoursecret key instead.
Declaration
Objective-C
@property (nonatomic, readonly) STPPaymentMethodCardCheckResult addressPostalCodeCheck;
Swift
var addressPostalCodeCheck: STPPaymentMethodCardCheckResult { get }
-
Deprecated
Card check values are no longer returned to clients using publishable keys. Retrieve them on your server using yoursecret key instead.
If a CVC was provided, results of the check.
@deprecated Card check values are no longer returned to clients using publishable keys. Retrieve them on your server using yoursecret key instead.
Declaration
Objective-C
@property (nonatomic, readonly) STPPaymentMethodCardCheckResult cvcCheck;
Swift
var cvcCheck: STPPaymentMethodCardCheckResult { get }