You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
2.4 KiB
C#

namespace TradeManageNew.APIClients.FedexApi.Models.Ship
{
/// <summary>
/// This is used to provide eMail notification information..
/// </summary>
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
public partial class ShipShipmentEMailNotificationDetail
{
/// <summary>
/// Shipment Notification Aggregation Type.&lt;br&gt;Example:PER_PACKAGE
/// </summary>
[Newtonsoft.Json.JsonProperty("aggregationType", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public ShipShipmentEMailNotificationDetailAggregationType? AggregationType { get; set; }
/// <summary>
/// These are email notification recipient details.
/// </summary>
[Newtonsoft.Json.JsonProperty("emailNotificationRecipients", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public System.Collections.Generic.ICollection<ShipShipmentEmailNotificationRecipient> EmailNotificationRecipients { get; set; }
/// <summary>
/// This is your personal message for the email.&lt;br&gt;Note: The maximum personal message character limit depends on the element notificationFormatType values:&lt;ul&gt;&lt;li&gt;If notificationFormatType is TEXT, then only 120 characters printed on the email&lt;/li&gt;&lt;li&gt;If notificationFormatType is HTML, then 500 characters printed on the email&lt;/li&gt;&lt;/ul&gt;&lt;br&gt;Example: This is concerning the order 123456 of 26 July 2021 - art no 34324-23 Teddy Bear, brown
/// </summary>
[Newtonsoft.Json.JsonProperty("personalMessage", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string PersonalMessage { get; set; }
private System.Collections.Generic.IDictionary<string, object> _additionalProperties;
[Newtonsoft.Json.JsonExtensionData]
public System.Collections.Generic.IDictionary<string, object> AdditionalProperties
{
get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary<string, object>()); }
set { _additionalProperties = value; }
}
}
}