/* Options: Date: 2025-12-06 07:26:30 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: WebixGanttJobTypeRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/webix/gantt/jobTypes", Verbs="GET,OPTIONS") public static class WebixGanttJobTypeRequest implements IReturn { private static Object responseType = WebixGanttJobTypeResponse.class; public Object getResponseType() { return responseType; } } public static class WebixGanttJobTypeResponse extends WebixGanttJobType { } public static class WebixGanttJobType { public String id = null; public String value = null; public String getId() { return id; } public WebixGanttJobType setId(String value) { this.id = value; return this; } public String getValue() { return value; } public WebixGanttJobType setValue(String value) { this.value = value; return this; } } }