SCPSetupAttemptCardPresentDetails

Objective-C


@interface SCPSetupAttemptCardPresentDetails : NSObject

Swift

class SetupAttemptCardPresentDetails : NSObject

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 }
  • The full PaymentMethod object for the generated card, if the API returned the expanded object. Contains card details such as brand, last4, and expiry.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) SCPPaymentMethod *generatedCardExpanded;

    Swift

    var generatedCardExpanded: SCPPaymentMethod? { 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;