Skip to content

Commit

Permalink
fix bug #149
Browse files Browse the repository at this point in the history
  • Loading branch information
abuzuhri committed Mar 24, 2022
1 parent c502e25 commit ba5b9c0
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,30 @@
* Generated by: https://github.com/swagger-api/swagger-codegen.git
*/

using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System.Runtime.Serialization;

namespace FikaAmazonAPI.AmazonSpApiSDK.Models.FulfillmentInbound
{
/// <summary>
/// Specifies the carrier shipment type in a putTransportDetails request.
/// </summary>
/// <value>Specifies the carrier shipment type in a putTransportDetails request.</value>

[JsonConverter(typeof(StringEnumConverter))]
public enum ShipmentType
{

/// <summary>
/// Enum SP for value: SP
/// </summary>

[EnumMember(Value = "SP")]
SP,

/// <summary>
/// Enum LTL for value: LTL
/// </summary>

[EnumMember(Value = "LTL")]
LTL
}

Expand Down

0 comments on commit ba5b9c0

Please sign in to comment.