/* Options: Date: 2025-12-06 06:26:59 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: AgentOfficeLocationRequest.* //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/AgentCrmGetOfficeLocations", Verbs="GET,OPTIONS") public static class AgentOfficeLocationRequest implements IReturn { private static Object responseType = AgentOfficeLocationResponse.class; public Object getResponseType() { return responseType; } } public static class AgentOfficeLocationResponse { public ResponseStatus ResponseStatus = null; public ArrayList AgentOfficeLocations = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public AgentOfficeLocationResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getAgentOfficeLocations() { return AgentOfficeLocations; } public AgentOfficeLocationResponse setAgentOfficeLocations(ArrayList value) { this.AgentOfficeLocations = value; return this; } } public static class AgentOfficeLocation { public Integer Id = null; public String City = null; public String State = null; public Integer getId() { return Id; } public AgentOfficeLocation setId(Integer value) { this.Id = value; return this; } public String getCity() { return City; } public AgentOfficeLocation setCity(String value) { this.City = value; return this; } public String getState() { return State; } public AgentOfficeLocation setState(String value) { this.State = value; return this; } } }