Skip to content

Instantly share code, notes, and snippets.

@ypcode
Created January 12, 2020 22:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ypcode/00762a9c2e597eb2751353d1a8d888d8 to your computer and use it in GitHub Desktop.
Save ypcode/00762a9c2e597eb2751353d1a8d888d8 to your computer and use it in GitHub Desktop.
export interface INotificationResourceData {
id: string;
"@odata.type": string;
"@odata.id": string;
"@odata.etag": string;
}
export interface INotification {
subscriptionId: string;
subscriptionExpirationDateTime: string;
tenantId: string;
changeType: string;
clientState: string;
resource: string;
resourceData: INotificationResourceData;
}
export interface INotificationsPayload {
value: INotification[];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment