/* Options: Date: 2025-12-06 08:27:05 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: WebixKanbanUserRequest.* //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/kanban/users", Verbs="GET,OPTIONS") public static class WebixKanbanUserRequest implements IReturn { private static Object responseType = WebixKanbanUserResponse.class; public Object getResponseType() { return responseType; } } public static class WebixKanbanUserResponse extends WebixKanbanUser { } public static class WebixKanbanUser { public Integer id = null; public String value = null; public String image = null; public Integer getId() { return id; } public WebixKanbanUser setId(Integer value) { this.id = value; return this; } public String getValue() { return value; } public WebixKanbanUser setValue(String value) { this.value = value; return this; } public String getImage() { return image; } public WebixKanbanUser setImage(String value) { this.image = value; return this; } } }