Interface Credential

interface Credential {
    clientId?: string;
    clientSecret?: string;
    password?: string;
    scope?: string;
    tokenRetrieveType?: TokenRetrieveType;
    tokenUrl?: string;
    username?: string;
}

Properties

clientId?: string

oauth client id

clientSecret?: string

oauth client secret

password?: string

basic password

scope?: string

traget scope

tokenRetrieveType?: TokenRetrieveType

oauth token retrieve type

tokenUrl?: string

oauth token url

username?: string

basic auth user name