citeright-sdk-js
Version:
An SDK to connect to the CiteRight API.
52 lines (51 loc) • 1.37 kB
TypeScript
/**
* EventNotificationContext helps us identify things about an event's execution. Details such as who executed the
* event and from which application are described herein.
*/
export declare class EventNotificationContext {
/**
* The IP address of the connected user/system
*/
IP: string;
/**
* The id of the user that triggered the event
*/
UserId: string;
/**
* The email of the user that triggered the event
*/
UserEmail: string;
/**
* The role of the user that triggered the event
*/
UserRole: string;
/**
* The first name of the user that triggered the event
*/
FirstName: string;
/**
* The last name of the user that triggered the event
*/
LastName: string;
/**
* The company id of the user that triggered the event
*/
CompanyId: string;
/**
* The company name of the user that triggered the event
*/
CompanyName: string;
/**
* The name of the application that executed the event.
*/
ApplicationName: string;
/**
* The version of the application that executed the event.
*/
ApplicationVersion: string;
MSWordVersion: string;
OSType: string;
OSVersion: string;
BrowserVersion: string;
BrowserType: string;
}