File tree Expand file tree Collapse file tree 2 files changed +20
-3
lines changed
AmazonSpApiSDK/Models/ProductFees Expand file tree Collapse file tree 2 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 14
14
using System . ComponentModel . DataAnnotations ;
15
15
using System . Runtime . Serialization ;
16
16
using System . Text ;
17
+ using static FikaAmazonAPI . Utils . Constants ;
17
18
18
19
namespace FikaAmazonAPI . AmazonSpApiSDK . Models . ProductFees
19
20
{
@@ -93,6 +94,13 @@ public partial class FeesEstimateIdentifier : IEquatable<FeesEstimateIdentifier>
93
94
[ DataMember ( Name = "SellerInputIdentifier" , EmitDefaultValue = false ) ]
94
95
public string SellerInputIdentifier { get ; set ; }
95
96
97
+
98
+ /// <summary>
99
+ /// An optional enrollment program to return the estimated fees when the offer is fulfilled by Amazon (IsAmazonFulfilled is set to true).
100
+ /// </summary>
101
+ [ DataMember ( Name = "OptionalFulfillmentProgram" , EmitDefaultValue = false ) ]
102
+ public OptionalFulfillmentProgram ? OptionalFulfillmentProgram { get ; set ; }
103
+
96
104
/// <summary>
97
105
/// Returns the string presentation of the object
98
106
/// </summary>
Original file line number Diff line number Diff line change @@ -10,14 +10,15 @@ public class Constants
10
10
public readonly static string DateISO8601Format = "yyyy-MM-ddTHH:mm:ss.fffZ" ;
11
11
public readonly static string TestCase200 = "TEST_CASE_200" ;
12
12
public readonly static string TestCase400 = "TEST_CASE_400" ;
13
-
13
+
14
14
[ JsonConverter ( typeof ( StringEnumConverter ) ) ]
15
15
public enum Environments
16
16
{
17
17
Sandbox , Production
18
18
}
19
19
[ JsonConverter ( typeof ( StringEnumConverter ) ) ]
20
- public enum GranularityEnum {
20
+ public enum GranularityEnum
21
+ {
21
22
Hour ,
22
23
Day ,
23
24
Week ,
@@ -142,7 +143,7 @@ public enum FirstDayOfWeek
142
143
Monday ,
143
144
Sunday
144
145
}
145
-
146
+
146
147
[ JsonConverter ( typeof ( StringEnumConverter ) ) ]
147
148
/// <summary>
148
149
/// A list of NotificationType
@@ -543,6 +544,14 @@ public enum ListingsIncludedData
543
544
Procurement
544
545
}
545
546
547
+ [ JsonConverter ( typeof ( StringEnumConverter ) ) ]
548
+ public enum OptionalFulfillmentProgram
549
+ {
550
+ FBA_CORE ,
551
+ FBA_SNL ,
552
+ FBA_EFN
553
+ }
554
+
546
555
547
556
///// <summary>
548
557
///// One of a set of predefined ISO 8601 periods that specifies how often a report should be created.
You can’t perform that action at this time.
0 commit comments