SQRDCardReceiptDetails
@interface SQRDCardReceiptDetails : NSObject <NSCopying>
/**
The Application Identifier (AID) is used to target an application on the card.
For example, A0 00 00 00 25 01 09 01.
*/
@property (nonatomic, readonly, nullable) NSString *applicationIdentifier;
/**
The mnemonic associated with the Application Identifier (AID).
For example, AMERICAN EXPRESS.
*/
@property (nonatomic, readonly, nullable) NSString *applicationPreferredName;
/**
A code returned by the card issuer.
For example, 262921.
*/
@property (nonatomic, readonly, nullable) NSString *authorizationCode;
@end
Undocumented
-
The Application Identifier (AID) is used to target an application on the card.
For example, A0 00 00 00 25 01 09 01.
Declaration
Objective-C
@property (readonly, nonatomic, nullable) NSString *applicationIdentifier;
Swift
var applicationIdentifier: String? { get }
-
The mnemonic associated with the Application Identifier (AID).
For example, AMERICAN EXPRESS.
Declaration
Objective-C
@property (readonly, nonatomic, nullable) NSString *applicationPreferredName;
Swift
var applicationPreferredName: String? { get }
-
A code returned by the card issuer.
For example, 262921.
Declaration
Objective-C
@property (readonly, nonatomic, nullable) NSString *authorizationCode;
Swift
var authorizationCode: String? { get }