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.

50 lines
3.6 KiB
C#

2 months ago
namespace TradeManageNew.APIClients.FedexAPI.Models.Ship
{
/// <summary>
/// Indicates the doc tab zone specification.
/// </summary>
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
public partial class DocTabZoneSpecification
{
/// <summary>
/// It is a non-negative integer that represents the portion of doc-tab in a label.&lt;br&gt;Example: 1
/// </summary>
[Newtonsoft.Json.JsonProperty("zoneNumber", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public int? ZoneNumber { get; set; }
/// <summary>
/// Indicates the parameter name in the header for the doc tab zone. The maximum charater limit is 7.&lt;br&gt;Example: WHT
/// </summary>
[Newtonsoft.Json.JsonProperty("header", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Header { get; set; }
/// <summary>
/// Indicate the path request/reply element to be printed on doc tab.&lt;br&gt;Example: &lt;ul&gt;&lt;li&gt; REQUEST/PACKAGE/weight/Value&lt;/li&gt;&lt;li&gt; REQUEST/PACKAGE/weight/Value&lt;/li&gt;&lt;li&gt; REQUEST/PACKAGE/InsuredValue/Amount&lt;/li&gt;&lt;li&gt; REQUEST/SHIPMENT/SpecialServicesRequested/CodDetail/CodCollectionAmount/Amount&lt;/li&gt;&lt;li&gt;REQUEST/SHIPMENT/Shipper/Address/StreetLines[1]CLIENT/MeterNumber&lt;/li&gt;&lt;li&gt; TRANSACTION/CustomerTransactionId&lt;/li&gt;&lt;li&gt; REQUEST/SHIPMENT/TotalWeight/Value&lt;/li&gt;&lt;li&gt; REQUEST/SHIPMENT/ShipTimestamp&lt;/li&gt;&lt;li&gt; REQUEST/SHIPMENT/Recipient/Contact/PersonName&lt;/li&gt;&lt;li&gt; REPLY/SHIPMENT/OperationalDetail/DeliveryDate&lt;/li&gt;&lt;li&gt; REPLY/SHIPMENT/RATES/ACTUAL/totalBaseCharge/Amount&lt;/li&gt;&lt;li&gt; REPLY/SHIPMENT/RATES/ACTUAL/totalFreightDiscounts/Amount&lt;/li&gt;&lt;li&gt; REPLY/SHIPMENT/RATES/ACTUAL/totalSurcharges/Amount&lt;/li&gt;&lt;li&gt; REPLY/SHIPMENT/RATES/ACTUAL/totalNetCharge/Amount&lt;/li&gt;&lt;li&gt; REPLY/SHIPMENT/RATES/PAYOR_ACCOUNT_PACKAGE/totalSurcharges/Amount&lt;/li&gt;&lt;/ul&gt;
/// </summary>
[Newtonsoft.Json.JsonProperty("dataField", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string DataField { get; set; }
/// <summary>
/// Indicates the actual data to be printed in the label&lt;br&gt;
/// </summary>
[Newtonsoft.Json.JsonProperty("literalValue", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string LiteralValue { get; set; }
/// <summary>
/// Indicates the justification format for the string.
/// </summary>
[Newtonsoft.Json.JsonProperty("justification", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public DocTabZoneSpecificationJustification? Justification { 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; }
}
}
}