@jaricardodev/ews-javascript-api
Version:
EWS Managed api in JavaScript
16 lines (13 loc) • 368 B
text/typescript
/**
* Indicates which occurrence of a recurring task should be deleted
*/
export enum AffectedTaskOccurrence {
/**
* All occurrences of the recurring task will be deleted.
*/
AllOccurrences = 0,
/**
* Only the current occurrence of the recurring task will be deleted.
*/
SpecifiedOccurrenceOnly = 1
}