/* Options: Date: 2024-11-28 09:45:10 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetEmailDraft.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class Outlook365Properties { public PidTag: string; public ItemId: string; public EwsUrl: string; public Token: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class StringResponse { public Value: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetEmailDraft extends Outlook365Properties implements IReturn { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'GetEmailDraft'; } public getMethod() { return 'GET'; } public createResponse() { return new StringResponse(); } }