interface TokenRequest {
    clientId?: string;
    clientSecret?: string;
    grantType: Oauth2GrantType;
    password?: string;
    scope?: string;
    username?: string;
}

Properties

clientId?: string
clientSecret?: string
grantType: Oauth2GrantType
password?: string
scope?: string
username?: string