Skip to content

Commit

Permalink
Regenerate from spec v1.19.2, version 3.0.0-beta.8
Browse files Browse the repository at this point in the history
  • Loading branch information
mattburton committed Jul 24, 2024
1 parent 77381c4 commit f61a6ef
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 27 deletions.
34 changes: 17 additions & 17 deletions ShipEngineSDK/Model/StatusCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
namespace ShipEngineSDK.Model;

/// <summary>
/// The tracking status codes |Value |Description |:- -- -- -- -- |:- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- |&#x60;un&#x60; | Unknown |&#x60;ac&#x60; | Accepted |&#x60;it&#x60; | In Transit |&#x60;de&#x60; | Delivered |&#x60;ex&#x60; | Exception |&#x60;at&#x60; | Delivery Attempt |&#x60;ny&#x60; | Not Yet In System
/// The tracking status codes |Value |Description |:- -- -- -- -- |:- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- |&#x60;UN&#x60; | Unknown |&#x60;AC&#x60; | Accepted |&#x60;IT&#x60; | In Transit |&#x60;DE&#x60; | Delivered |&#x60;EX&#x60; | Exception |&#x60;AT&#x60; | Delivery Attempt |&#x60;NY&#x60; | Not Yet In System
/// </summary>
/// <value>The tracking status codes |Value |Description |:- -- -- -- -- |:- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- |&#x60;un&#x60; | Unknown |&#x60;ac&#x60; | Accepted |&#x60;it&#x60; | In Transit |&#x60;de&#x60; | Delivered |&#x60;ex&#x60; | Exception |&#x60;at&#x60; | Delivery Attempt |&#x60;ny&#x60; | Not Yet In System </value>
/// <value>The tracking status codes |Value |Description |:- -- -- -- -- |:- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- |&#x60;UN&#x60; | Unknown |&#x60;AC&#x60; | Accepted |&#x60;IT&#x60; | In Transit |&#x60;DE&#x60; | Delivered |&#x60;EX&#x60; | Exception |&#x60;AT&#x60; | Delivery Attempt |&#x60;NY&#x60; | Not Yet In System </value>
[JsonConverter(typeof(StatusCodeJsonConverter))]
public class StatusCode
{
Expand All @@ -34,7 +34,7 @@ public class StatusCode
/// </summary>
internal StatusCode()
{
_value = "un";
_value = "UN";
}

/// <summary>
Expand All @@ -51,45 +51,45 @@ public StatusCode(string value)
}

/// <summary>
/// Enum Un for value: un
/// Enum UN for value: UN
/// </summary>
public static StatusCode Un { get; } = new("un");
public static StatusCode UN { get; } = new("UN");


/// <summary>
/// Enum Ac for value: ac
/// Enum AC for value: AC
/// </summary>
public static StatusCode Ac { get; } = new("ac");
public static StatusCode AC { get; } = new("AC");


/// <summary>
/// Enum It for value: it
/// Enum IT for value: IT
/// </summary>
public static StatusCode It { get; } = new("it");
public static StatusCode IT { get; } = new("IT");


/// <summary>
/// Enum De for value: de
/// Enum DE for value: DE
/// </summary>
public static StatusCode De { get; } = new("de");
public static StatusCode DE { get; } = new("DE");


/// <summary>
/// Enum Ex for value: ex
/// Enum EX for value: EX
/// </summary>
public static StatusCode Ex { get; } = new("ex");
public static StatusCode EX { get; } = new("EX");


/// <summary>
/// Enum At for value: at
/// Enum AT for value: AT
/// </summary>
public static StatusCode At { get; } = new("at");
public static StatusCode AT { get; } = new("AT");


/// <summary>
/// Enum Ny for value: ny
/// Enum NY for value: NY
/// </summary>
public static StatusCode Ny { get; } = new("ny");
public static StatusCode NY { get; } = new("NY");


/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion ShipEngineSDK/ShipEngineSDK.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<PackageId>ShipEngine</PackageId>
<PackageTags>sdk;rest;api;shipping;rates;label;tracking;cost;address;validation;normalization;fedex;ups;usps;</PackageTags>

<Version>3.0.0-beta.7</Version>
<Version>3.0.0-beta.8</Version>
<Authors>ShipEngine</Authors>
<Company>ShipEngine</Company>
<Summary>The official ShipEngine C# SDK for .NET</Summary>
Expand Down
18 changes: 9 additions & 9 deletions generation/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openapi": "3.0.0",
"info": {
"title": "ShipEngine API",
"version": "1.1.202407241607",
"version": "1.1.202407242007",
"termsOfService": "https://www.shipengine.com/terms-of-service/",
"x-logo": {
"url": "https://shipengine.github.io/img/shipengine-logo-square.png",
Expand Down Expand Up @@ -12705,16 +12705,16 @@
"readOnly": true,
"title": "status_code",
"enum": [
"un",
"ac",
"it",
"de",
"ex",
"at",
"ny"
"UN",
"AC",
"IT",
"DE",
"EX",
"AT",
"NY"
],
"type": "string",
"description": "The tracking status codes\n\n|Value |Description\n|:--------- |:-----------------------------------------------------\n|`un` | Unknown\n|`ac` | Accepted\n|`it` | In Transit\n|`de` | Delivered\n|`ex` | Exception\n|`at` | Delivery Attempt\n|`ny` | Not Yet In System\n"
"description": "The tracking status codes\n\n|Value |Description\n|:--------- |:-----------------------------------------------------\n|`UN` | Unknown\n|`AC` | Accepted\n|`IT` | In Transit\n|`DE` | Delivered\n|`EX` | Exception\n|`AT` | Delivery Attempt\n|`NY` | Not Yet In System\n"
},
"track_event": {
"title": "track_event",
Expand Down

0 comments on commit f61a6ef

Please sign in to comment.