/* Options: Date: 2024-10-18 04:36:20 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: UpdateDocumentWithEmail.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class UpdateDocumentWithFileResponse { public IsSucces: boolean; public FileUrl: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class UpdateDocumentWithFile implements IReturn { public DocumentId: string; public UpdateStorageSystem: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UpdateDocumentWithFile'; } public getMethod() { return 'POST'; } public createResponse() { return new UpdateDocumentWithFileResponse(); } } export class UpdateDocumentWithEmail extends UpdateDocumentWithFile implements IReturn { public EmailConversationID: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'UpdateDocumentWithEmail'; } public getMethod() { return 'POST'; } public createResponse() { return new UpdateDocumentWithFileResponse(); } }