/* Options: Date: 2025-12-06 06:52:15 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: AgentCategorizationRequest.* //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/Report/AgentCategorization/{AgentId}/", Verbs="GET,OPTIONS") // @Route(Path="/v1/Report/AgentCategorization/{AgentId}/{ContactCategoryId}", Verbs="GET,OPTIONS") public static class AgentCategorizationRequest implements IReturn { public Integer AgentId = null; public Integer ContactCategoryId = null; public Integer getAgentId() { return AgentId; } public AgentCategorizationRequest setAgentId(Integer value) { this.AgentId = value; return this; } public Integer getContactCategoryId() { return ContactCategoryId; } public AgentCategorizationRequest setContactCategoryId(Integer value) { this.ContactCategoryId = value; return this; } private static Object responseType = AgentCategorizationResponse.class; public Object getResponseType() { return responseType; } } public static class AgentCategorizationResponse { public ResponseStatus ResponseStatus = null; public ArrayList Contacts = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public AgentCategorizationResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getContacts() { return Contacts; } public AgentCategorizationResponse setContacts(ArrayList value) { this.Contacts = value; return this; } } public static class AgentCategorization { public Integer AgentId = null; public String AgentFirstName = null; public String AgentLastName = null; public Integer ContactId = null; public UUID ContactGUID = null; public String ContactFirstName = null; public String ContactLastName = null; public Integer ContactStatus = null; public String ContactStatusName = null; public Integer ContactCategory = null; public String ContactCategoryName = null; public String ContactEmail = null; public String ContactPhone = null; public Boolean IsShared = null; public Integer WritingAgentId = null; public Boolean IsWritingAgent = null; public String WritingAgentName = null; public Integer getAgentId() { return AgentId; } public AgentCategorization setAgentId(Integer value) { this.AgentId = value; return this; } public String getAgentFirstName() { return AgentFirstName; } public AgentCategorization setAgentFirstName(String value) { this.AgentFirstName = value; return this; } public String getAgentLastName() { return AgentLastName; } public AgentCategorization setAgentLastName(String value) { this.AgentLastName = value; return this; } public Integer getContactId() { return ContactId; } public AgentCategorization setContactId(Integer value) { this.ContactId = value; return this; } public UUID getContactGUID() { return ContactGUID; } public AgentCategorization setContactGUID(UUID value) { this.ContactGUID = value; return this; } public String getContactFirstName() { return ContactFirstName; } public AgentCategorization setContactFirstName(String value) { this.ContactFirstName = value; return this; } public String getContactLastName() { return ContactLastName; } public AgentCategorization setContactLastName(String value) { this.ContactLastName = value; return this; } public Integer getContactStatus() { return ContactStatus; } public AgentCategorization setContactStatus(Integer value) { this.ContactStatus = value; return this; } public String getContactStatusName() { return ContactStatusName; } public AgentCategorization setContactStatusName(String value) { this.ContactStatusName = value; return this; } public Integer getContactCategory() { return ContactCategory; } public AgentCategorization setContactCategory(Integer value) { this.ContactCategory = value; return this; } public String getContactCategoryName() { return ContactCategoryName; } public AgentCategorization setContactCategoryName(String value) { this.ContactCategoryName = value; return this; } public String getContactEmail() { return ContactEmail; } public AgentCategorization setContactEmail(String value) { this.ContactEmail = value; return this; } public String getContactPhone() { return ContactPhone; } public AgentCategorization setContactPhone(String value) { this.ContactPhone = value; return this; } public Boolean getIsShared() { return IsShared; } public AgentCategorization setIsShared(Boolean value) { this.IsShared = value; return this; } public Integer getWritingAgentId() { return WritingAgentId; } public AgentCategorization setWritingAgentId(Integer value) { this.WritingAgentId = value; return this; } public Boolean getIsWritingAgent() { return IsWritingAgent; } public AgentCategorization setIsWritingAgent(Boolean value) { this.IsWritingAgent = value; return this; } public String getWritingAgentName() { return WritingAgentName; } public AgentCategorization setWritingAgentName(String value) { this.WritingAgentName = value; return this; } } }