SQRDTenderCardDetails
@interface SQRDTenderCardDetails : NSObject <NSCopying>
Represents the details related to a card payment.
-
The method used to capture the card information during the checkout flow.
For example, whether the card was swiped or typed in manually.
Declaration
Objective-C
@property (readonly, nonatomic) SQRDTenderCardDetailsEntryMethod entryMethod;
Swift
var entryMethod: SQRDTenderCardDetailsEntryMethod { get }
-
Details related to the card payment that can be used to produce EMV-compliant receipts.
Declaration
Objective-C
@property (readonly, nonatomic, nullable) SQRDCardReceiptDetails *cardReceiptDetails;
Swift
var cardReceiptDetails: SQRDCardReceiptDetails? { get }