STPPaymentMethodCardChecks
public class STPPaymentMethodCardChecks : NSObject, STPAPIResponseDecodable
Checks on Card address and CVC.
-
If a address line1 was provided, results of the check.
Declaration
Swift
@available(*, deprecated, message: "Card check values are no longer returned to clients using publishable keys. Retrieve them on your server using your secret key instead.") @objc public private(set) var addressLine1Check: STPPaymentMethodCardCheckResult { get }
-
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
Swift
@available(*, deprecated, message: "Card check values are no longer returned to clients using publishable keys. Retrieve them on your server using your secret key instead.") @objc public private(set) var addressPostalCodeCheck: STPPaymentMethodCardCheckResult { get }
-
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
Swift
@available(*, deprecated, message: "Card check values are no longer returned to clients using publishable keys. Retrieve them on your server using your secret key instead.") @objc public private(set) var cvcCheck: STPPaymentMethodCardCheckResult { get }
-
Declaration
Swift
@objc private(set) public var allResponseFields: [AnyHashable : Any] { get }
-
Declaration
Swift
public class func decodedObject(fromAPIResponse response: [AnyHashable : Any]?) -> `Self`?