ADK for TypeScript: API Reference
    Preparing search index...

    Interface HttpCredentials

    Represents the secret token value for HTTP authentication, like user name, password, oauth token, etc.

    interface HttpCredentials {
        password?: string;
        token?: string;
        username?: string;
    }

    Properties

    password?: string
    token?: string
    username?: string