(* Options: Date: 2025-12-06 09:17:39 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: AgentPromotionsHistoryRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace CRM.AgencyPlatform.API.Internal open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Net [] type AgentPromotionsHistory() = member val AgentLevel:Int32 = new Int32() with get,set member val PromotionDate:DateTime = new DateTime() with get,set member val Description:String = null with get,set member val NextPromotionDescription:String = null with get,set member val NextPromotionGuideline:String = null with get,set [] [] type ResponseStatus() = [] member val ErrorCode:String = null with get,set [] member val Message:String = null with get,set [] member val StackTrace:String = null with get,set [] member val Errors:ResizeArray = new ResizeArray() with get,set [] member val Meta:Dictionary = new Dictionary() with get,set [] type AgentPromotionsHistoryResponse() = member val ResponseStatus:ResponseStatus = null with get,set member val result:ResizeArray = new ResizeArray() with get,set [] [] type AgentPromotionsHistoryRequest() = interface IReturn member val AgentId:Int32 = new Int32() with get,set