/* Options: Date: 2025-12-06 08:18: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: AgentPromotionsHistoryRequest.* //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/AgentPromotionsHistory/{AgentId}", Verbs="GET,OPTIONS") public static class AgentPromotionsHistoryRequest implements IReturn { public Integer AgentId = null; public Integer getAgentId() { return AgentId; } public AgentPromotionsHistoryRequest setAgentId(Integer value) { this.AgentId = value; return this; } private static Object responseType = AgentPromotionsHistoryResponse.class; public Object getResponseType() { return responseType; } } public static class AgentPromotionsHistoryResponse { public ResponseStatus ResponseStatus = null; public ArrayList result = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public AgentPromotionsHistoryResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getResult() { return result; } public AgentPromotionsHistoryResponse setResult(ArrayList value) { this.result = value; return this; } } public static class AgentPromotionsHistory { public Integer AgentLevel = null; public Date PromotionDate = null; public String Description = null; public String NextPromotionDescription = null; public String NextPromotionGuideline = null; public Integer getAgentLevel() { return AgentLevel; } public AgentPromotionsHistory setAgentLevel(Integer value) { this.AgentLevel = value; return this; } public Date getPromotionDate() { return PromotionDate; } public AgentPromotionsHistory setPromotionDate(Date value) { this.PromotionDate = value; return this; } public String getDescription() { return Description; } public AgentPromotionsHistory setDescription(String value) { this.Description = value; return this; } public String getNextPromotionDescription() { return NextPromotionDescription; } public AgentPromotionsHistory setNextPromotionDescription(String value) { this.NextPromotionDescription = value; return this; } public String getNextPromotionGuideline() { return NextPromotionGuideline; } public AgentPromotionsHistory setNextPromotionGuideline(String value) { this.NextPromotionGuideline = value; return this; } } }