File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Source/FikaAmazonAPI/AmazonSpApiSDK/Models/FulfillmentInbound Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 8
8
* Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
*/
10
10
11
+ using Newtonsoft . Json ;
12
+ using Newtonsoft . Json . Converters ;
13
+ using System . Runtime . Serialization ;
14
+
11
15
namespace FikaAmazonAPI . AmazonSpApiSDK . Models . FulfillmentInbound
12
16
{
13
17
/// <summary>
14
18
/// Specifies the carrier shipment type in a putTransportDetails request.
15
19
/// </summary>
16
20
/// <value>Specifies the carrier shipment type in a putTransportDetails request.</value>
17
-
21
+ [ JsonConverter ( typeof ( StringEnumConverter ) ) ]
18
22
public enum ShipmentType
19
23
{
20
24
21
25
/// <summary>
22
26
/// Enum SP for value: SP
23
27
/// </summary>
24
-
28
+ [ EnumMember ( Value = "SP" ) ]
25
29
SP ,
26
30
27
31
/// <summary>
28
32
/// Enum LTL for value: LTL
29
33
/// </summary>
30
-
34
+ [ EnumMember ( Value = "LTL" ) ]
31
35
LTL
32
36
}
33
37
You can’t perform that action at this time.
0 commit comments