/* Options: Date: 2024-10-18 04:32:54 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: SetWorkflowTaskMessage.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IComment { Text: string; Date: string; Username: string; IsMine: boolean; } export class WorkflowTaskComment implements IComment { public WorkflowTaskID: number; public UserID: number; public TaskTitle: string; public Connection: string; public Username: string; public Text: string; public Date: string; public IsMine: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class SetWorkflowTaskMessage implements IReturn { public ID: number; public UserID: number; public Message: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SetWorkflowTaskMessage'; } public getMethod() { return 'POST'; } public createResponse() { return new WorkflowTaskComment(); } }