@jaricardodev/ews-javascript-api
Version:
EWS Managed api in JavaScript
20 lines (18 loc) • 470 B
text/typescript
import {ComplexProperty} from "./ComplexProperty";
/**
* Represents an operation to be performed on a rule.
*/
export abstract class RuleOperation extends ComplexProperty {
/**
* @internal Gets the XML element name of the rule operation.
*/
get XmlElementName(): string {
throw new Error("abstract - must implement");
}
/**
* @internal Initializes a new instance of the **RuleOperation** class.
*/
constructor() {
super();
}
}