/* Options: Date: 2025-07-04 08:54:50 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdateDocumentWithEmailProperties.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class UpdateDocumentWithEmailProperties implements IReturn { public ItemId: string; public EwsUrl: string; public Token: string; public DocumentId: string; public EmailSend: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UpdateDocumentWithEmailProperties'; } public getMethod() { return 'PUT'; } public createResponse() { return false; } }