src/lib/service/auth/auth-profile.interface.ts
Properties |
active |
active:
|
Type : boolean
|
Optional |
flag whether or not the profile is active |
auth |
auth:
|
Type : string
|
Optional |
token to be set to the authorization header |
host |
host:
|
Type : string
|
host to connect to |
ntlm |
ntlm:
|
Type : boolean
|
Optional |
flag whether or not to connect via NTLM |
user |
user:
|
Type : string
|
Optional |
username |
export interface AuthProfile {
/**
* host to connect to
*/
host: string;
/**
* username
*/
user?: string;
/**
* token to be set to the authorization header
*/
auth?: string;
/**
* flag whether or not the profile is active
*/
active?: boolean;
/**
* flag whether or not to connect via NTLM
*/
ntlm?: boolean;
}