/* Options: Date: 2026-07-08 21:09:40 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: PmAgentListRequest.* //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/pm/agents", Verbs="GET,OPTIONS") public static class PmAgentListRequest implements IReturn { private static Object responseType = PmAgentListResponse.class; public Object getResponseType() { return responseType; } } public static class PmAgentListResponse { public ArrayList Agents = new ArrayList(); public ArrayList getAgents() { return Agents; } public PmAgentListResponse setAgents(ArrayList value) { this.Agents = value; return this; } } public static class PmAgentItem { public String UserId = null; public String Name = null; public String getUserId() { return UserId; } public PmAgentItem setUserId(String value) { this.UserId = value; return this; } public String getName() { return Name; } public PmAgentItem setName(String value) { this.Name = value; return this; } } }