@jaricardodev/ews-javascript-api
Version:
EWS Managed api in JavaScript
10 lines (9 loc) • 490 B
text/typescript
import {Item} from "../Core/ServiceObjects/Items/Item";
import {ExchangeService} from "../Core/ExchangeService";
import {EwsServiceXmlWriter} from "../Core/EwsServiceXmlWriter";
export class AbstractItemIdWrapper {//IJsonSerializable
GetItem(): Item { return null;}
IternalToJson(service: ExchangeService): any { throw new Error("AbstractItemIdWrapper.ts - IternalToJson : Not implemented."); }
/**@internal */
WriteToXml(writer: EwsServiceXmlWriter): void {}
}