You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// An optional enrollment program to return the estimated fees when the offer is fulfilled by Amazon (IsAmazonFulfilled is set to true).
12
+
/// </summary>
13
+
[JsonConverter(typeof(StringEnumConverter))]
14
+
publicenumOptionalFulfillmentProgramEnum
15
+
{
16
+
/// <summary>
17
+
/// Returns the standard Amazon fulfillment fees for the offer. This is the default.
18
+
/// </summary>
19
+
[EnumMember(Value="FBA_CORE")]
20
+
FBA_CORE,
21
+
22
+
/// <summary>
23
+
/// Returns the FBA Small and Light (SNL) fees for the offer. The SNL program offers reduced fulfillment costs on qualified items. To check item eligibility for the SNL program, use the getSmallAndLightEligibilityBySellerSKU operation of the FBA Small And Light API.
24
+
/// </summary>
25
+
[EnumMember(Value="FBA_SNL")]
26
+
FBA_SNL,
27
+
28
+
/// <summary>
29
+
/// Returns the cross-border European Fulfillment Network fees across EU countries for the offer.
0 commit comments