SystemStatusMessageInfo

Wraps a System Status Message

TypeScript
export interface SystemStatusMessageInfo extends
Extends

Identifiable

Properties

PropertyTypeDescription
statusFurtherInformationstringAdditional information to display (optional)
statusMessagestringThe Message to be displayed
statusTypeAdaptableMessageTypeType of Message i.e. Succcess, Warning, Error, Info
timestampDateWhen Message was sent

Property Details

statusFurtherInformation

Additional information to display (optional)

TypeScript
statusFurtherInformation?: string;
Property Value

string

statusMessage

The Message to be displayed

TypeScript
statusMessage: string;
Property Value

string

statusType

Type of Message i.e. Succcess, Warning, Error, Info

TypeScript
statusType: AdaptableMessageType;
Property Value

AdaptableMessageType

timestamp

When Message was sent

TypeScript
timestamp?: Date;
Property Value

Date