IO Wallet SDK
    Preparing search index...

    Configuration class for the IO Wallet SDK

    This class manages the version of the Italian Wallet technical specifications to use throughout the SDK. The version determines the format of credential requests and responses.

    Basic usage
    const config = new IoWalletSdkConfig({ itWalletSpecsVersion: ItWalletSpecsVersion.V1_0 });
    console.log(config.itWalletSpecsVersion); // ItWalletSpecsVersion.V1_0
    Type guard usage
    if (config.isVersion(ItWalletSpecsVersion.V1_3)) {
    // TypeScript narrows config.itWalletSpecsVersion to ItWalletSpecsVersion.V1_3
    }

    Type Parameters

    Index

    Constructors

    Properties

    Methods

    Constructors

    Properties

    itWalletSpecsVersion: V

    Methods