projects/prestations-ng/src/sdk-events-logger/sdk-event.ts
Properties |
|
Optional detail |
Type : string
|
reference |
Type : string
|
Optional sessionInfoContext |
Type : string
|
timestamp |
Type : Date
|
type |
Type : SdkEventType | string
|
import { SdkEventType } from './sdk-event-type';
export class SdkEvent {
timestamp: Date;
reference: string;
sessionInfoContext?: string;
type: SdkEventType | string;
detail?: string;
}