Documentation - v1.2.0-alpha.3
    Preparing search index...

    Interface TokenOrSinginResourceResponse

    Represents a response containing either a token or a sign-in resource. This interface defines the structure of a response that includes a token response and a sign-in resource.

    interface TokenOrSinginResourceResponse {
        signInResource: SignInResource;
        tokenResponse: TokenResponse;
    }
    Index

    Properties

    signInResource: SignInResource

    The sign-in resource containing sign-in and token exchange information.

    tokenResponse: TokenResponse

    The token response containing OAuth token information.