SCPSetupAttemptCardPresentDetails
Objective-C
@interface SCPSetupAttemptCardPresentDetails : NSObject <SCPJSONDecodable>
Swift
class SetupAttemptCardPresentDetails : NSObject, JSONDecodable
An object representing details from a transaction using a card_present payment method.
-
The ID of the Card PaymentMethod which was generated by this SetupAttempt.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull generatedCard;
Swift
var generatedCard: String { get }
-
The Authorization Response Cryptogram (ARPC) from the issuer.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull emvAuthData;
Swift
var emvAuthData: String { get }
-
Unavailable
You cannot directly instantiate this class.
Declaration
Objective-C
- (nonnull instancetype)init;
-
Unavailable
You cannot directly instantiate this class.
Declaration
Objective-C
+ (nonnull instancetype)new;