namespace TradeManageNew.APIClients.FedexAPI.Models.RatesAndTransitTimes { /// /// This is the response object for a rate quote request. /// [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")] public partial class BaseProcessOutputVO { /// /// This object will hold the rate and shipment data returned for a request. /// [Newtonsoft.Json.JsonProperty("rateReplyDetails", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public System.Collections.Generic.ICollection RateReplyDetails { get; set; } /// /// The date on which the rate is quoted.<br> Example: 2019-09-18 /// [Newtonsoft.Json.JsonProperty("quoteDate", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string QuoteDate { get; set; } /// /// Specifies the encoded form of the rate. <br> Example: false /// [Newtonsoft.Json.JsonProperty("isEncoded", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public bool? IsEncoded { get; set; } /// /// The alert code, alert type, and alert message obtained when a rate quote is requested. /// [Newtonsoft.Json.JsonProperty("alerts", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public System.Collections.Generic.ICollection Alerts { get; set; } private System.Collections.Generic.IDictionary _additionalProperties; [Newtonsoft.Json.JsonExtensionData] public System.Collections.Generic.IDictionary AdditionalProperties { get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } set { _additionalProperties = value; } } } }