/* Options: Date: 2024-10-18 04:17:45 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SetWorkflowTaskRead.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { public static class SetWorkflowTaskRead implements IReturnVoid { public Integer ID = null; public Boolean ReadInformativeTask = null; public Integer getId() { return ID; } public SetWorkflowTaskRead setId(Integer value) { this.ID = value; return this; } public Boolean isReadInformativeTask() { return ReadInformativeTask; } public SetWorkflowTaskRead setReadInformativeTask(Boolean value) { this.ReadInformativeTask = value; return this; } } }