/* Options: Date: 2025-12-06 07:24:25 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: AgentActivityEventTypeRequest.* //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/ActivityEventType/Agent", Verbs="GET") public static class AgentActivityEventTypeRequest implements IReturn { public ArrayList EventType = new ArrayList(); public ArrayList getEventType() { return EventType; } public AgentActivityEventTypeRequest setEventType(ArrayList value) { this.EventType = value; return this; } private static Object responseType = EventTypeResponse.class; public Object getResponseType() { return responseType; } } public static class EventTypeResponse { public ResponseStatus ResponseStatus = null; public ArrayList EventType = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public EventTypeResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getEventType() { return EventType; } public EventTypeResponse setEventType(ArrayList value) { this.EventType = value; return this; } } public static class EventType { public Integer EventTypeId = null; public String EventTypeName = null; public String EventCategory = null; public Boolean IsActive = null; public Integer getEventTypeId() { return EventTypeId; } public EventType setEventTypeId(Integer value) { this.EventTypeId = value; return this; } public String getEventTypeName() { return EventTypeName; } public EventType setEventTypeName(String value) { this.EventTypeName = value; return this; } public String getEventCategory() { return EventCategory; } public EventType setEventCategory(String value) { this.EventCategory = value; return this; } public Boolean getIsActive() { return IsActive; } public EventType setIsActive(Boolean value) { this.IsActive = value; return this; } } }