Skip to content

Commit f105966

Browse files
committed
fix #430 add AU_VOEC to enum
1 parent b9226f7 commit f105966

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

Source/FikaAmazonAPI.SampleCode/Program.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,14 @@ static async Task Main(string[] args)
3939
IsDebugMode = true
4040
});
4141

42+
43+
var all = amazonConnection.ProductPricing.GetItemOffers(new Parameter.ProductPricing.ParameterGetItemOffers
44+
{
45+
Asin = "B07NVTGRVZ",
46+
ItemCondition = ItemCondition.New,
47+
CustomerType = CustomerType.Consumer
48+
});
49+
4250
OrdersSample ordersSample1 = new OrdersSample(amazonConnection);
4351
ordersSample1.GetOrdersPIIAdvance();
4452
ordersSample1.GetOrdersPIISimple();
@@ -47,7 +55,7 @@ static async Task Main(string[] args)
4755
var offfers = amazonConnection.ProductPricing.GetItemOffers(new Parameter.ProductPricing.ParameterGetItemOffers
4856
{
4957
Asin = "B0000512CU",
50-
CustomerType=CustomerType.Business,
58+
CustomerType = CustomerType.Business,
5159
ItemCondition = ItemCondition.New,
5260
});
5361

Source/FikaAmazonAPI/AmazonSpApiSDK/Models/Orders/OrderItem.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,13 @@ public enum DeemedResellerCategoryEnum
6363
/// Enum CA_MPF for value: CA_MPF
6464
/// </summary>
6565
[EnumMember(Value = "CA_MPF")]
66-
CA_MPF = 5
66+
CA_MPF = 5,
67+
68+
/// <summary>
69+
/// Enum AU_VOEC for value: AU_VOEC
70+
/// </summary>
71+
[EnumMember(Value = "AU_VOEC")]
72+
AU_VOEC = 6,
6773
}
6874

6975
/// <summary>

0 commit comments

Comments
 (0)