/* Options: Date: 2026-07-08 19:28:31 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PmAgentListRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class PmAgentItem { public UserId: string; public Name: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class PmAgentListResponse { public Agents: PmAgentItem[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/v1/pm/agents", "GET,OPTIONS") export class PmAgentListRequest implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'PmAgentListRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new PmAgentListResponse(); } }