anonymous-student
Version:
Anonymous student is used to retrieve and save information from our website users.
11 lines (9 loc) • 303 B
text/typescript
import { IEvent } from '@studyportals/event-aggregation-service-interface';
export interface IStudentProfileChanged extends IEvent {
eventType: string;
eventVersion: string;
eventTimestamp: string;
userId: string; // IdentityId
updated: { [key: string]: any };
deleted: { [key: string]: any };
}