/* Options: Date: 2025-12-06 10:03:17 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: CalendarLinkRequest.* //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/CalendarLink/{AgentId}", Verbs="GET,OPTIONS") // @Route(Path="/v1/CalendarLink/{LinkAgentId}/{AgentId}", Verbs="POST,OPTIONS") // @Route(Path="/v1/CalendarLink/{Id}/{Active}", Verbs="PUT,OPTIONS") // @Route(Path="/v1/CalendarLink/{Id}", Verbs="DELETE,OPTIONS") public static class CalendarLinkRequest implements IReturn { public Integer AgentId = null; public Integer LinkAgentId = null; public Integer Id = null; public Boolean Active = null; public Integer getAgentId() { return AgentId; } public CalendarLinkRequest setAgentId(Integer value) { this.AgentId = value; return this; } public Integer getLinkAgentId() { return LinkAgentId; } public CalendarLinkRequest setLinkAgentId(Integer value) { this.LinkAgentId = value; return this; } public Integer getId() { return Id; } public CalendarLinkRequest setId(Integer value) { this.Id = value; return this; } public Boolean isActive() { return Active; } public CalendarLinkRequest setActive(Boolean value) { this.Active = value; return this; } private static Object responseType = CalendarLinkResponse.class; public Object getResponseType() { return responseType; } } public static class CalendarLinkResponse { public ResponseStatus ResponseStatus = null; public ArrayList CalendarLink = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public CalendarLinkResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getCalendarLink() { return CalendarLink; } public CalendarLinkResponse setCalendarLink(ArrayList value) { this.CalendarLink = value; return this; } } public static class CalendarLink { public Integer Id = null; public UUID CalendarId = null; public String FirstName = null; public String LastName = null; public Integer AgentId = null; public Boolean Active = null; public Integer getId() { return Id; } public CalendarLink setId(Integer value) { this.Id = value; return this; } public UUID getCalendarId() { return CalendarId; } public CalendarLink setCalendarId(UUID value) { this.CalendarId = value; return this; } public String getFirstName() { return FirstName; } public CalendarLink setFirstName(String value) { this.FirstName = value; return this; } public String getLastName() { return LastName; } public CalendarLink setLastName(String value) { this.LastName = value; return this; } public Integer getAgentId() { return AgentId; } public CalendarLink setAgentId(Integer value) { this.AgentId = value; return this; } public Boolean isActive() { return Active; } public CalendarLink setActive(Boolean value) { this.Active = value; return this; } } }