UserConfig interface​
Configuration data that is specific to the current, active user
Signature:export interface UserConfig
Properties​
| Property | Type | Description |
|---|---|---|
| failValidateOnEmpty | boolean | Should the validate function consider null, undefined, or non-Result type objects a failure |
| firstName? | string | null | (Optional) The user's first name |
| lastName? | string | null | (Optional) The user's last name |
| severityError | Severity | The severity level considered to be an error. NOTE: This will also include all severity levels above the selected number as well (event is an error when severityError <= event.severity). |
| severityReport | Severity | The severity level considered to be an report-able event. NOTE: This will also include all severity levels above the selected number as well (event is a report-able when severityAlert <= event.severity). |
| userId | string | A string that can be used to represent the current user performing actions in the application/triggering processes |