Details

public final class Details : Sendable

Detailed information pertaining to a specific DigitalCard.

  • Scheme of this digitalCard.

    Declaration

    Swift

    public var scheme: DigitalCard.Scheme? { get }
  • Checks if a particular payment method is supported.

    Declaration

    Swift

    public func isPaymentTypeSupported(_ type: PaymentType) -> Bool

    Return Value

    Bool: True if supported.

  • Retrieves all the supported AIDs

    Declaration

    Swift

    public var qrAIDs: [String] { get }

    Return Value

    [String]: An array containing the String of AIDs in which index 0 always represents the main AID. This array will be empty if the card does not support QR code payment.

  • Returns all the supported payment types for this DigitalCard.

    Declaration

    Swift

    public var paymentTypesSupported: [PaymentType] { get }

    Return Value

    [PaymentType]:An array containing the payment types supported.