akiles-cordova
    Preparing search index...

    Interface Card

    Represents a card scanned with the Akiles system.

    interface Card {
        isAkilesCard: boolean;
        uid: string;
        close(): void;
        update(): Promise<void>;
    }
    Index

    Properties

    Methods

    Properties

    isAkilesCard: boolean

    Whether the card is an Akiles card.

    uid: string

    The UID of the card.

    Methods

    • Close the connection to the card.

      Returns void

    • Update the data on the card with the Akiles server.

      Returns Promise<void>

      A promise that resolves when the update is complete.