/* Options: Date: 2024-10-18 04:15:38 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: 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; } }