Interface UserPasswordCredentialsInput

interface UserPasswordCredentialsInput {
    password?: string;
    scopes?: any[];
    silentRefresh?: boolean;
    username: string;
}

Properties

password?: string
scopes?: any[]
silentRefresh?: boolean
username: string