/* Options: Date: 2025-12-06 09:21:41 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: AgentPromotionsHistoryRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class AgentPromotionsHistory { public AgentLevel: number; public PromotionDate: string; public Description: string; public NextPromotionDescription: string; public NextPromotionGuideline: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @DataContract export class ResponseStatus { // @DataMember(Order=1) public ErrorCode: string; // @DataMember(Order=2) public Message: string; // @DataMember(Order=3) public StackTrace: string; // @DataMember(Order=4) public Errors: ResponseError[] = []; // @DataMember(Order=5) public Meta: { [index:string]: string; } = {}; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class AgentPromotionsHistoryResponse { public ResponseStatus: ResponseStatus; public result: AgentPromotionsHistory[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/v1/AgentPromotionsHistory/{AgentId}", "GET,OPTIONS") export class AgentPromotionsHistoryRequest implements IReturn { public AgentId: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'AgentPromotionsHistoryRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new AgentPromotionsHistoryResponse(); } }