IsCardDigitizedResult

@objc
public enum IsCardDigitizedResult : Int

Card Digitization Result

  • The current device or an attached device both supports adding this payment card and does not already contain a payment card with the supplied encrypted payload or primary account identifier.

    Declaration

    Swift

    case CardNotDigitized
  • The current device or an attached device both contain a payment card with the supplied encrypted payload or primary account identifier.

    Declaration

    Swift

    case CardAlreadyDigitized
  • Error while retrieving card digitization result. This Error could be return when one of the following condition is match:

    1. issuerId from config is null or empty
    2. primaryAccountIdentifier parameter is null
    3. serverHostname from config is null or empty
    4. card parameter is null
    5. FundingCard.scheme is null or empty
    6. FundingCard.encryptedPayload is null or empty
    7. Server error returns other than 116 error

    Declaration

    Swift

    case Error
  • String description

    Declaration

    Swift

    public var description: String { get }