SQRDTenderCardDetails

@interface SQRDTenderCardDetails : NSObject <NSCopying>

Represents the details related to a card payment.

  • Details about the card used in this tender, such as the brand and last four digits of the card number.

    Declaration

    Objective-C

    @property (readonly, nonatomic, nonnull) SQRDCard *card;

    Swift

    var card: SQRDCard { get }
  • 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 }