File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
FikaAmazonAPI/Parameter/ProductTypes Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -764,7 +764,7 @@ var def = amazonConnection.ProductType.GetDefinitionsProductType(
764
764
new Parameter .ProductTypes .GetDefinitionsProductTypeParameter ()
765
765
{
766
766
productType = " PRODUCT" ,
767
- requirements = RequirementsEnum .LISTING ,
767
+ requirements = Requirements .LISTING ,
768
768
locale = AmazonSpApiSDK .Models .ProductTypes .LocaleEnum .en_US
769
769
});
770
770
```
Original file line number Diff line number Diff line change 1
- using static FikaAmazonAPI . AmazonSpApiSDK . Models . ListingsItems . ListingsItemPutRequest ;
1
+ using FikaAmazonAPI . Parameter . ListingItem ;
2
2
3
3
namespace FikaAmazonAPI . SampleCode
4
4
{
@@ -27,7 +27,7 @@ private void GetDefinitionsProductType()
27
27
new Parameter . ProductTypes . GetDefinitionsProductTypeParameter ( )
28
28
{
29
29
productType = "PRODUCT" ,
30
- requirements = RequirementsEnum . LISTING ,
30
+ requirements = Requirements . LISTING ,
31
31
locale = AmazonSpApiSDK . Models . ProductTypes . LocaleEnum . en_US
32
32
} ) ;
33
33
}
Original file line number Diff line number Diff line change 1
1
using FikaAmazonAPI . AmazonSpApiSDK . Models . ProductTypes ;
2
2
using FikaAmazonAPI . Search ;
3
3
using System . Collections . Generic ;
4
- using static FikaAmazonAPI . AmazonSpApiSDK . Models . ListingsItems . ListingsItemPutRequest ;
4
+ using FikaAmazonAPI . Parameter . ListingItem ;
5
5
6
6
namespace FikaAmazonAPI . Parameter . ProductTypes
7
7
{
@@ -12,7 +12,7 @@ public class GetDefinitionsProductTypeParameter : ParameterBased
12
12
public string sellerId { get ; set ; }
13
13
public ICollection < string > marketplaceIds { get ; set ; } = new List < string > ( ) ;
14
14
public string productTypeVersion { get ; set ; }
15
- public RequirementsEnum ? requirements { get ; set ; }
15
+ public Requirements ? requirements { get ; set ; }
16
16
public RequirementsEnforcedEnum ? requirementsEnforced { get ; set ; }
17
17
public LocaleEnum ? locale { get ; set ; }
18
18
You can’t perform that action at this time.
0 commit comments