File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed
FikaAmazonAPI/AmazonSpApiSDK/Models/Orders Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,14 @@ static async Task Main(string[] args)
39
39
IsDebugMode = true
40
40
} ) ;
41
41
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
+
42
50
OrdersSample ordersSample1 = new OrdersSample ( amazonConnection ) ;
43
51
ordersSample1 . GetOrdersPIIAdvance ( ) ;
44
52
ordersSample1 . GetOrdersPIISimple ( ) ;
@@ -47,7 +55,7 @@ static async Task Main(string[] args)
47
55
var offfers = amazonConnection . ProductPricing . GetItemOffers ( new Parameter . ProductPricing . ParameterGetItemOffers
48
56
{
49
57
Asin = "B0000512CU" ,
50
- CustomerType = CustomerType . Business ,
58
+ CustomerType = CustomerType . Business ,
51
59
ItemCondition = ItemCondition . New ,
52
60
} ) ;
53
61
Original file line number Diff line number Diff line change @@ -63,7 +63,13 @@ public enum DeemedResellerCategoryEnum
63
63
/// Enum CA_MPF for value: CA_MPF
64
64
/// </summary>
65
65
[ 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 ,
67
73
}
68
74
69
75
/// <summary>
You can’t perform that action at this time.
0 commit comments