/* Options: Date: 2025-12-06 07:09:45 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: WebixGanttLinkRequest.* //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/links", Verbs="GET,OPTIONS") public static class WebixGanttLinkRequest implements IReturn { private static Object responseType = WebixGanttLinkResponse.class; public Object getResponseType() { return responseType; } } public static class WebixGanttLinkResponse extends WebixGanttLink { } public static class WebixGanttLink { public Integer id = null; public Integer source = null; public Integer target = null; public Integer type = null; public Integer getId() { return id; } public WebixGanttLink setId(Integer value) { this.id = value; return this; } public Integer getSource() { return source; } public WebixGanttLink setSource(Integer value) { this.source = value; return this; } public Integer getTarget() { return target; } public WebixGanttLink setTarget(Integer value) { this.target = value; return this; } public Integer getType() { return type; } public WebixGanttLink setType(Integer value) { this.type = value; return this; } } }