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.

31 lines
1.8 KiB
C#

namespace TradeManageNew.APIClients.FedexAPI.Models.RatesAndTransitTimes
{
/// <summary>
/// Describes specific information about the email label shipment.&lt;ul&gt;&lt;li&gt;Message: Content of the email message&lt;/li&gt;&lt;li&gt;Recipients: EMailRecipient&lt;/li&gt;&lt;li&gt;emailAddress - email address of the recipient&lt;/li&gt;&lt;li&gt;role - role type of the recipient&lt;/li&gt;&lt;li&gt;optionsRequested&lt;/li&gt;&lt;li&gt;localization&lt;/li&gt;
/// </summary>
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
public partial class EmailLabelDetail
{
/// <summary>
/// Describes specific information about the list of email label shipment reipients.
/// </summary>
[Newtonsoft.Json.JsonProperty("recipients", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public System.Collections.Generic.ICollection<EmailRecipient> Recipients { get; set; }
/// <summary>
/// customer specified message to be included in the email to the end-user.
/// </summary>
[Newtonsoft.Json.JsonProperty("message", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Message { 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; }
}
}
}