/* Options: Date: 2025-12-06 09:03:28 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: NewAgentRequest.* //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/NewAgent", Verbs="GET,POST,OPTIONS") // @Route(Path="/v1/NewAgent/{AgentId}", Verbs="GET,PUT,OPTIONS") public static class NewAgentRequest implements IReturn { public Integer AgentId = null; public ArrayList NewAgent = new ArrayList(); public Integer getAgentId() { return AgentId; } public NewAgentRequest setAgentId(Integer value) { this.AgentId = value; return this; } public ArrayList getNewAgent() { return NewAgent; } public NewAgentRequest setNewAgent(ArrayList value) { this.NewAgent = value; return this; } private static Object responseType = NewAgentResponse.class; public Object getResponseType() { return responseType; } } public static class NewAgentResponse { public ResponseStatus ResponseStatus = null; public ArrayList NewAgent = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public NewAgentResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getNewAgent() { return NewAgent; } public NewAgentResponse setNewAgent(ArrayList value) { this.NewAgent = value; return this; } } public static class NewAgent { public Integer AgentId = null; public String FirstName = null; public String LastName = null; public String UserName = null; public String Email = null; public Boolean IsAdmin = null; public Integer getAgentId() { return AgentId; } public NewAgent setAgentId(Integer value) { this.AgentId = value; return this; } public String getFirstName() { return FirstName; } public NewAgent setFirstName(String value) { this.FirstName = value; return this; } public String getLastName() { return LastName; } public NewAgent setLastName(String value) { this.LastName = value; return this; } public String getUserName() { return UserName; } public NewAgent setUserName(String value) { this.UserName = value; return this; } public String getEmail() { return Email; } public NewAgent setEmail(String value) { this.Email = value; return this; } public Boolean getIsAdmin() { return IsAdmin; } public NewAgent setIsAdmin(Boolean value) { this.IsAdmin = value; return this; } } }