BTApplePayCardNonce

Objective-C

@interface BTApplePayCardNonce : BTPaymentMethodNonce

Swift

class BTApplePayCardNonce : BTPaymentMethodNonce

Contains information about a tokenized Apple Pay card.

  • The BIN data for the card number associated with this nonce.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) BTBinData *_Nonnull binData;

    Swift

    var binData: BTBinData { get }
  • Used to initialize a BTApplePayCardNonce with parameters.

    Declaration

    Objective-C

    - (nullable instancetype)initWithJSON:(nonnull BTJSON *)json;

    Swift

    init?(json: BTJSON)