/* Options: Date: 2024-10-18 04:35:32 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: SetWorkflowTaskRead.* //ExcludeTypes: //DefaultImports: */ export interface IReturnVoid { createResponse(): void; } export class SetWorkflowTaskRead implements IReturnVoid { public ID: number; public ReadInformativeTask: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SetWorkflowTaskRead'; } public getMethod() { return 'POST'; } public createResponse() {} }