IO Wallet SDK
    Preparing search index...

    Interface ExtractGrantDetailsResultV1_3

    Result of extracting grant details from an IT-Wallet v1.3 credential offer.

    interface ExtractGrantDetailsResultV1_3 {
        authorizationCodeGrant: {
            authorizationServer?: string;
            issuerState?: string;
            scope: string;
        };
        grantType: "authorization_code";
    }
    Index

    Properties

    authorizationCodeGrant: {
        authorizationServer?: string;
        issuerState?: string;
        scope: string;
    }

    Details of the authorization code grant.

    Type Declaration

    • OptionalauthorizationServer?: string

      HTTPS URL of the Authorization Server. OPTIONAL, but REQUIRED when the Credential Issuer uses multiple Authorization Servers.

    • OptionalissuerState?: string

      String value representing the issuer state. OPTIONAL. Used to correlate the authorization request with the credential offer.

    • scope: string

      OAuth 2.0 scope value. REQUIRED in IT-Wallet v1.3.

    grantType: "authorization_code"

    The type of grant present in the credential offer. IT-Wallet only supports "authorization_code".