Files
starface-outlook-sync-addin/node_modules/applicationinsights/out/Declarations/Contracts/Generated/MessageData.d.ts
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

26 lines
698 B
TypeScript

import Domain = require('./Domain');
import SeverityLevel = require('./SeverityLevel');
/**
* Instances of Message represent printf-like trace statements that are text-searched. Log4Net, NLog and other text-based log file entries are translated into intances of this type. The message does not have measurements.
*/
declare class MessageData extends Domain {
/**
* Schema version
*/
ver: number;
/**
* Trace message
*/
message: string;
/**
* Trace severity level.
*/
severityLevel: SeverityLevel;
/**
* Collection of custom properties.
*/
properties: any;
constructor();
}
export = MessageData;