1092 lines
55 KiB
C#
1092 lines
55 KiB
C#
//----------------------
|
|
// <auto-generated>
|
|
// Generated using the NSwag toolchain v13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0)) (http://NSwag.org)
|
|
// </auto-generated>
|
|
//----------------------
|
|
|
|
#pragma warning disable 108 // Disable "CS0108 '{derivedDto}.ToJson()' hides inherited member '{dtoBase}.ToJson()'. Use the new keyword if hiding was intended."
|
|
#pragma warning disable 114 // Disable "CS0114 '{derivedDto}.RaisePropertyChanged(String)' hides inherited member 'dtoBase.RaisePropertyChanged(String)'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword."
|
|
#pragma warning disable 472 // Disable "CS0472 The result of the expression is always 'false' since a value of type 'Int32' is never equal to 'null' of type 'Int32?'
|
|
#pragma warning disable 612 // Disable "CS0612 '...' is obsolete"
|
|
#pragma warning disable 1573 // Disable "CS1573 Parameter '...' has no matching param tag in the XML comment for ...
|
|
#pragma warning disable 1591 // Disable "CS1591 Missing XML comment for publicly visible type or member ..."
|
|
#pragma warning disable 8073 // Disable "CS8073 The result of the expression is always 'false' since a value of type 'T' is never equal to 'null' of type 'T?'"
|
|
#pragma warning disable 3016 // Disable "CS3016 Arrays as attribute arguments is not CLS-compliant"
|
|
#pragma warning disable 8603 // Disable "CS8603 Possible null reference return"
|
|
|
|
namespace Nop.Plugin.Shipping.UPS.API.Track
|
|
{
|
|
using System = global::System;
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NSwag", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class TrackClient
|
|
{
|
|
private string _baseUrl = "https://wwwcie.ups.com/api";
|
|
private System.Net.Http.HttpClient _httpClient;
|
|
private System.Lazy<Newtonsoft.Json.JsonSerializerSettings> _settings;
|
|
|
|
public TrackClient(System.Net.Http.HttpClient httpClient)
|
|
{
|
|
_httpClient = httpClient;
|
|
_settings = new System.Lazy<Newtonsoft.Json.JsonSerializerSettings>(CreateSerializerSettings);
|
|
}
|
|
|
|
private Newtonsoft.Json.JsonSerializerSettings CreateSerializerSettings()
|
|
{
|
|
var settings = new Newtonsoft.Json.JsonSerializerSettings();
|
|
UpdateJsonSerializerSettings(settings);
|
|
return settings;
|
|
}
|
|
|
|
public string BaseUrl
|
|
{
|
|
get { return _baseUrl; }
|
|
set { _baseUrl = value; }
|
|
}
|
|
|
|
protected Newtonsoft.Json.JsonSerializerSettings JsonSerializerSettings { get { return _settings.Value; } }
|
|
|
|
partial void UpdateJsonSerializerSettings(Newtonsoft.Json.JsonSerializerSettings settings);
|
|
|
|
partial void PrepareRequest(System.Net.Http.HttpClient client, System.Net.Http.HttpRequestMessage request, string url);
|
|
partial void PrepareRequest(System.Net.Http.HttpClient client, System.Net.Http.HttpRequestMessage request, System.Text.StringBuilder urlBuilder);
|
|
partial void ProcessResponse(System.Net.Http.HttpClient client, System.Net.Http.HttpResponseMessage response);
|
|
|
|
/// <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
|
|
/// <summary>
|
|
/// gets single track API details
|
|
/// </summary>
|
|
/// <param name="inquiryNumber">Inquiry Number</param>
|
|
/// <param name="transId">transId</param>
|
|
/// <param name="transactionSrc">transactionSrc</param>
|
|
/// <param name="locale">locale</param>
|
|
/// <param name="returnSignature">returnSignature</param>
|
|
/// <returns>Tracking Information found</returns>
|
|
/// <exception cref="ApiException">A server side error occurred.</exception>
|
|
public virtual async System.Threading.Tasks.Task<TrackApiResponse> TrackV1DetailsAsync(string inquiryNumber, string transId, string transactionSrc, object body, string locale = null, string returnSignature = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
|
|
{
|
|
if (inquiryNumber == null)
|
|
throw new System.ArgumentNullException("inquiryNumber");
|
|
|
|
if (body == null)
|
|
throw new System.ArgumentNullException("body");
|
|
|
|
var urlBuilder_ = new System.Text.StringBuilder();
|
|
urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/track/v1/details/{inquiryNumber}?");
|
|
urlBuilder_.Replace("{inquiryNumber}", System.Uri.EscapeDataString(ConvertToString(inquiryNumber, System.Globalization.CultureInfo.InvariantCulture)));
|
|
if (locale != null)
|
|
{
|
|
urlBuilder_.Append(System.Uri.EscapeDataString("locale") + "=").Append(System.Uri.EscapeDataString(ConvertToString(locale, System.Globalization.CultureInfo.InvariantCulture))).Append("&");
|
|
}
|
|
if (returnSignature != null)
|
|
{
|
|
urlBuilder_.Append(System.Uri.EscapeDataString("returnSignature") + "=").Append(System.Uri.EscapeDataString(ConvertToString(returnSignature, System.Globalization.CultureInfo.InvariantCulture))).Append("&");
|
|
}
|
|
urlBuilder_.Length--;
|
|
|
|
var client_ = _httpClient;
|
|
var disposeClient_ = false;
|
|
try
|
|
{
|
|
using (var request_ = new System.Net.Http.HttpRequestMessage())
|
|
{
|
|
|
|
if (transId == null)
|
|
throw new System.ArgumentNullException("transId");
|
|
request_.Headers.TryAddWithoutValidation("transId", ConvertToString(transId, System.Globalization.CultureInfo.InvariantCulture));
|
|
|
|
if (transactionSrc == null)
|
|
throw new System.ArgumentNullException("transactionSrc");
|
|
request_.Headers.TryAddWithoutValidation("transactionSrc", ConvertToString(transactionSrc, System.Globalization.CultureInfo.InvariantCulture));
|
|
var json_ = Newtonsoft.Json.JsonConvert.SerializeObject(body, _settings.Value);
|
|
var content_ = new System.Net.Http.StringContent(json_);
|
|
content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
|
|
request_.Content = content_;
|
|
request_.Method = new System.Net.Http.HttpMethod("GET");
|
|
request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("*/*"));
|
|
|
|
PrepareRequest(client_, request_, urlBuilder_);
|
|
|
|
var url_ = urlBuilder_.ToString();
|
|
request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute);
|
|
|
|
PrepareRequest(client_, request_, url_);
|
|
|
|
var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false);
|
|
var disposeResponse_ = true;
|
|
try
|
|
{
|
|
var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value);
|
|
if (response_.Content != null && response_.Content.Headers != null)
|
|
{
|
|
foreach (var item_ in response_.Content.Headers)
|
|
headers_[item_.Key] = item_.Value;
|
|
}
|
|
|
|
ProcessResponse(client_, response_);
|
|
|
|
var status_ = (int)response_.StatusCode;
|
|
if (status_ == 200)
|
|
{
|
|
var objectResponse_ = await ReadObjectResponseAsync<TrackApiResponse>(response_, headers_, cancellationToken).ConfigureAwait(false);
|
|
if (objectResponse_.Object == null)
|
|
{
|
|
throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null);
|
|
}
|
|
return objectResponse_.Object;
|
|
}
|
|
else
|
|
if (status_ == 207)
|
|
{
|
|
var objectResponse_ = await ReadObjectResponseAsync<Response>(response_, headers_, cancellationToken).ConfigureAwait(false);
|
|
if (objectResponse_.Object == null)
|
|
{
|
|
throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null);
|
|
}
|
|
throw new ApiException<Response>("Tracking Information not found for all inquiry numbers", status_, objectResponse_.Text, headers_, objectResponse_.Object, null);
|
|
}
|
|
else
|
|
if (status_ == 400)
|
|
{
|
|
var objectResponse_ = await ReadObjectResponseAsync<Response>(response_, headers_, cancellationToken).ConfigureAwait(false);
|
|
if (objectResponse_.Object == null)
|
|
{
|
|
throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null);
|
|
}
|
|
throw new ApiException<Response>("Invalid request", status_, objectResponse_.Text, headers_, objectResponse_.Object, null);
|
|
}
|
|
else
|
|
if (status_ == 404)
|
|
{
|
|
var objectResponse_ = await ReadObjectResponseAsync<Response>(response_, headers_, cancellationToken).ConfigureAwait(false);
|
|
if (objectResponse_.Object == null)
|
|
{
|
|
throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null);
|
|
}
|
|
throw new ApiException<Response>("Tracking number information not found", status_, objectResponse_.Text, headers_, objectResponse_.Object, null);
|
|
}
|
|
else
|
|
if (status_ == 500)
|
|
{
|
|
var objectResponse_ = await ReadObjectResponseAsync<Response>(response_, headers_, cancellationToken).ConfigureAwait(false);
|
|
if (objectResponse_.Object == null)
|
|
{
|
|
throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null);
|
|
}
|
|
throw new ApiException<Response>("Internal server error", status_, objectResponse_.Text, headers_, objectResponse_.Object, null);
|
|
}
|
|
else
|
|
if (status_ == 503)
|
|
{
|
|
var objectResponse_ = await ReadObjectResponseAsync<Response>(response_, headers_, cancellationToken).ConfigureAwait(false);
|
|
if (objectResponse_.Object == null)
|
|
{
|
|
throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null);
|
|
}
|
|
throw new ApiException<Response>("Resource is not available", status_, objectResponse_.Text, headers_, objectResponse_.Object, null);
|
|
}
|
|
else
|
|
{
|
|
var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false);
|
|
throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null);
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
if (disposeResponse_)
|
|
response_.Dispose();
|
|
}
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
if (disposeClient_)
|
|
client_.Dispose();
|
|
}
|
|
}
|
|
|
|
protected struct ObjectResponseResult<T>
|
|
{
|
|
public ObjectResponseResult(T responseObject, string responseText)
|
|
{
|
|
this.Object = responseObject;
|
|
this.Text = responseText;
|
|
}
|
|
|
|
public T Object { get; }
|
|
|
|
public string Text { get; }
|
|
}
|
|
|
|
public bool ReadResponseAsString { get; set; }
|
|
|
|
protected virtual async System.Threading.Tasks.Task<ObjectResponseResult<T>> ReadObjectResponseAsync<T>(System.Net.Http.HttpResponseMessage response, System.Collections.Generic.IReadOnlyDictionary<string, System.Collections.Generic.IEnumerable<string>> headers, System.Threading.CancellationToken cancellationToken)
|
|
{
|
|
if (response == null || response.Content == null)
|
|
{
|
|
return new ObjectResponseResult<T>(default(T), string.Empty);
|
|
}
|
|
|
|
if (ReadResponseAsString)
|
|
{
|
|
var responseText = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
|
try
|
|
{
|
|
var typedBody = Newtonsoft.Json.JsonConvert.DeserializeObject<T>(responseText, JsonSerializerSettings);
|
|
return new ObjectResponseResult<T>(typedBody, responseText);
|
|
}
|
|
catch (Newtonsoft.Json.JsonException exception)
|
|
{
|
|
var message = "Could not deserialize the response body string as " + typeof(T).FullName + ".";
|
|
throw new ApiException(message, (int)response.StatusCode, responseText, headers, exception);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
try
|
|
{
|
|
using (var responseStream = await response.Content.ReadAsStreamAsync().ConfigureAwait(false))
|
|
using (var streamReader = new System.IO.StreamReader(responseStream))
|
|
using (var jsonTextReader = new Newtonsoft.Json.JsonTextReader(streamReader))
|
|
{
|
|
var serializer = Newtonsoft.Json.JsonSerializer.Create(JsonSerializerSettings);
|
|
var typedBody = serializer.Deserialize<T>(jsonTextReader);
|
|
return new ObjectResponseResult<T>(typedBody, string.Empty);
|
|
}
|
|
}
|
|
catch (Newtonsoft.Json.JsonException exception)
|
|
{
|
|
var message = "Could not deserialize the response body stream as " + typeof(T).FullName + ".";
|
|
throw new ApiException(message, (int)response.StatusCode, string.Empty, headers, exception);
|
|
}
|
|
}
|
|
}
|
|
|
|
private string ConvertToString(object value, System.Globalization.CultureInfo cultureInfo)
|
|
{
|
|
if (value == null)
|
|
{
|
|
return "";
|
|
}
|
|
|
|
if (value is System.Enum)
|
|
{
|
|
var name = System.Enum.GetName(value.GetType(), value);
|
|
if (name != null)
|
|
{
|
|
var field = System.Reflection.IntrospectionExtensions.GetTypeInfo(value.GetType()).GetDeclaredField(name);
|
|
if (field != null)
|
|
{
|
|
var attribute = System.Reflection.CustomAttributeExtensions.GetCustomAttribute(field, typeof(System.Runtime.Serialization.EnumMemberAttribute))
|
|
as System.Runtime.Serialization.EnumMemberAttribute;
|
|
if (attribute != null)
|
|
{
|
|
return attribute.Value != null ? attribute.Value : name;
|
|
}
|
|
}
|
|
|
|
var converted = System.Convert.ToString(System.Convert.ChangeType(value, System.Enum.GetUnderlyingType(value.GetType()), cultureInfo));
|
|
return converted == null ? string.Empty : converted;
|
|
}
|
|
}
|
|
else if (value is bool)
|
|
{
|
|
return System.Convert.ToString((bool)value, cultureInfo).ToLowerInvariant();
|
|
}
|
|
else if (value is byte[])
|
|
{
|
|
return System.Convert.ToBase64String((byte[])value);
|
|
}
|
|
else if (value.GetType().IsArray)
|
|
{
|
|
var array = System.Linq.Enumerable.OfType<object>((System.Array)value);
|
|
return string.Join(",", System.Linq.Enumerable.Select(array, o => ConvertToString(o, cultureInfo)));
|
|
}
|
|
|
|
var result = System.Convert.ToString(value, cultureInfo);
|
|
return result == null ? "" : result;
|
|
}
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class AccessPointInformation
|
|
{
|
|
[Newtonsoft.Json.JsonProperty("pickupByDate", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string PickupByDate { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class Activity
|
|
{
|
|
/// <summary>
|
|
/// type
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("date", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Date { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("location", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public Location Location { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("status", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public Status Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// type
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("time", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Time { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class Address
|
|
{
|
|
/// <summary>
|
|
/// addressLine1
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("addressLine1", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string AddressLine1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// addressLine2
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("addressLine2", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string AddressLine2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// addressLine3
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("addressLine3", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string AddressLine3 { get; set; }
|
|
|
|
/// <summary>
|
|
/// city
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("city", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string City { get; set; }
|
|
|
|
/// <summary>
|
|
/// country
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("country", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Country { get; set; }
|
|
|
|
/// <summary>
|
|
/// countryCode
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("countryCode", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string CountryCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// postalCode
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("postalCode", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string PostalCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// stateProvince
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("stateProvince", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string StateProvince { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class AlternateTrackingNumber
|
|
{
|
|
/// <summary>
|
|
/// number
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("number", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Number { get; set; }
|
|
|
|
/// <summary>
|
|
/// type
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("type", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Type { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class DeliveryDate
|
|
{
|
|
[Newtonsoft.Json.JsonProperty("date", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Date { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("type", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Type { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class DeliveryInformation
|
|
{
|
|
/// <summary>
|
|
/// location
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("location", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Location { get; set; }
|
|
|
|
/// <summary>
|
|
/// receivedBy
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("receivedBy", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string ReceivedBy { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("signature", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public Signature Signature { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class DeliveryTime
|
|
{
|
|
[Newtonsoft.Json.JsonProperty("endTime", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string EndTime { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("startTime", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string StartTime { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("type", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Type { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class Error
|
|
{
|
|
[Newtonsoft.Json.JsonProperty("code", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Code { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("message", Required = Newtonsoft.Json.Required.DisallowNull, 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; }
|
|
}
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// Inquiry number
|
|
/// </summary>
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class InquireNumbers
|
|
{
|
|
[Newtonsoft.Json.JsonProperty("inquiryNumbers", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<string> InquiryNumbers { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class Location
|
|
{
|
|
[Newtonsoft.Json.JsonProperty("address", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public Address Address { get; set; }
|
|
|
|
/// <summary>
|
|
/// slic
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("slic", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Slic { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class Milestones
|
|
{
|
|
[Newtonsoft.Json.JsonProperty("category", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Category { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("code", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Code { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("current", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public bool Current { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("description", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Description { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("linkedActivity", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string LinkedActivity { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("state", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string State { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("subMilestone", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public SubMilestone SubMilestone { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class Package
|
|
{
|
|
[Newtonsoft.Json.JsonProperty("accessPointInformation", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public AccessPointInformation AccessPointInformation { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("activity", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<Activity> Activity { get; set; }
|
|
|
|
/// <summary>
|
|
/// type
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("additionalAttributes", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<string> AdditionalAttributes { get; set; }
|
|
|
|
/// <summary>
|
|
/// type
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("additionalServices", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<string> AdditionalServices { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("alternateTrackingNumber", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<AlternateTrackingNumber> AlternateTrackingNumber { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("currentStatus", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public Status CurrentStatus { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("deliveryDate", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<DeliveryDate> DeliveryDate { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("deliveryInformation", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public DeliveryInformation DeliveryInformation { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("deliveryTime", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public DeliveryTime DeliveryTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// milestones
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("milestones", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<Milestones> Milestones { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("packageAddress", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<PackageAddress> PackageAddress { get; set; }
|
|
|
|
/// <summary>
|
|
/// packageCount
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("packageCount", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public int PackageCount { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("paymentInformation", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<PaymentInformation> PaymentInformation { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("referenceNumber", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<ReferenceNumber> ReferenceNumber { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("service", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public Service Service { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("statusCode", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string StatusCode { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("statusDescription", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string StatusDescription { get; set; }
|
|
|
|
/// <summary>
|
|
/// suppressionIndicators
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("suppressionIndicators", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<string> SuppressionIndicators { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("trackingNumber", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string TrackingNumber { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("weight", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public Weight Weight { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class PackageAddress
|
|
{
|
|
[Newtonsoft.Json.JsonProperty("address", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public Address Address { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("attentionName", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string AttentionName { get; set; }
|
|
|
|
/// <summary>
|
|
/// name
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// type
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("type", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Type { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class PaymentInformation
|
|
{
|
|
/// <summary>
|
|
/// amount
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("amount", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Amount { get; set; }
|
|
|
|
/// <summary>
|
|
/// currency
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("currency", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Currency { get; set; }
|
|
|
|
/// <summary>
|
|
/// id
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("id", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// paid
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("paid", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public bool Paid { get; set; }
|
|
|
|
/// <summary>
|
|
/// paymentMethod
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("paymentMethod", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string PaymentMethod { get; set; }
|
|
|
|
/// <summary>
|
|
/// type
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("type", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Type { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class ReferenceNumber
|
|
{
|
|
/// <summary>
|
|
/// number
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("number", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Number { get; set; }
|
|
|
|
/// <summary>
|
|
/// type
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("type", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Type { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class Response
|
|
{
|
|
[Newtonsoft.Json.JsonProperty("errors", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<Error> Errors { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class Service
|
|
{
|
|
/// <summary>
|
|
/// code
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("code", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// description
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("description", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Description { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class Shipment
|
|
{
|
|
/// <summary>
|
|
/// inquiryNumber
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("inquiryNumber", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string InquiryNumber { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("package", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<Package> Package { get; set; }
|
|
|
|
/// <summary>
|
|
/// userRelation
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("userRelation", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<string> UserRelation { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("warnings", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<Warning> Warnings { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class Signature
|
|
{
|
|
/// <summary>
|
|
/// image
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("image", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Image { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class Status
|
|
{
|
|
/// <summary>
|
|
/// code
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("code", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// description
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("description", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// simplifiedTextDescription
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("simplifiedTextDescription", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string SimplifiedTextDescription { get; set; }
|
|
|
|
/// <summary>
|
|
/// statusCode
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("statusCode", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string StatusCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// type
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("type", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Type { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class SubMilestone
|
|
{
|
|
[Newtonsoft.Json.JsonProperty("category", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Category { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class TrackApiResponse
|
|
{
|
|
[Newtonsoft.Json.JsonProperty("trackResponse", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public TrackResponse TrackResponse { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class TrackResponse
|
|
{
|
|
[Newtonsoft.Json.JsonProperty("shipment", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public System.Collections.Generic.ICollection<Shipment> Shipment { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class Warning
|
|
{
|
|
[Newtonsoft.Json.JsonProperty("code", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Code { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("message", Required = Newtonsoft.Json.Required.DisallowNull, 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; }
|
|
}
|
|
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class Weight
|
|
{
|
|
[Newtonsoft.Json.JsonProperty("unitOfMeasurement", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string UnitOfMeasurement { get; set; }
|
|
|
|
[Newtonsoft.Json.JsonProperty("weight", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
|
|
public string Weight1 { 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; }
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NSwag", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class ApiException : System.Exception
|
|
{
|
|
public int StatusCode { get; private set; }
|
|
|
|
public string Response { get; private set; }
|
|
|
|
public System.Collections.Generic.IReadOnlyDictionary<string, System.Collections.Generic.IEnumerable<string>> Headers { get; private set; }
|
|
|
|
public ApiException(string message, int statusCode, string response, System.Collections.Generic.IReadOnlyDictionary<string, System.Collections.Generic.IEnumerable<string>> headers, System.Exception innerException)
|
|
: base(message + "\n\nStatus: " + statusCode + "\nResponse: \n" + ((response == null) ? "(null)" : response.Substring(0, response.Length >= 512 ? 512 : response.Length)), innerException)
|
|
{
|
|
StatusCode = statusCode;
|
|
Response = response;
|
|
Headers = headers;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("HTTP Response: \n\n{0}\n\n{1}", Response, base.ToString());
|
|
}
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCode("NSwag", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
|
|
public partial class ApiException<TResult> : ApiException
|
|
{
|
|
public TResult Result { get; private set; }
|
|
|
|
public ApiException(string message, int statusCode, string response, System.Collections.Generic.IReadOnlyDictionary<string, System.Collections.Generic.IEnumerable<string>> headers, TResult result, System.Exception innerException)
|
|
: base(message, statusCode, response, headers, innerException)
|
|
{
|
|
Result = result;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
#pragma warning restore 108
|
|
#pragma warning restore 114
|
|
#pragma warning restore 472
|
|
#pragma warning restore 612
|
|
#pragma warning restore 1573
|
|
#pragma warning restore 1591
|
|
#pragma warning restore 8073
|
|
#pragma warning restore 3016
|
|
#pragma warning restore 8603 |