@@ -127,8 +127,9 @@ public interface IAmazonApiSync : IApiAccessor
127127 /// <param name="asin"></param>
128128 /// <param name="domain"> (optional, default to "com")</param>
129129 /// <param name="zip"> (optional)</param>
130+ /// <param name="page">Offer page, 10 rows each (optional, default to 1)</param>
130131 /// <returns>Object</returns>
131- Object AmazonGetAllSellerOffersBuybox ( string asin , string domain = default ( string ) , string zip = default ( string ) ) ;
132+ Object AmazonGetAllSellerOffersBuybox ( string asin , string domain = default ( string ) , string zip = default ( string ) , int ? page = default ( int ? ) ) ;
132133
133134 /// <summary>
134135 /// Get all seller offers (buybox)
@@ -140,8 +141,9 @@ public interface IAmazonApiSync : IApiAccessor
140141 /// <param name="asin"></param>
141142 /// <param name="domain"> (optional, default to "com")</param>
142143 /// <param name="zip"> (optional)</param>
144+ /// <param name="page">Offer page, 10 rows each (optional, default to 1)</param>
143145 /// <returns>ApiResponse of Object</returns>
144- ApiResponse < Object > AmazonGetAllSellerOffersBuyboxWithHttpInfo ( string asin , string domain = default ( string ) , string zip = default ( string ) ) ;
146+ ApiResponse < Object > AmazonGetAllSellerOffersBuyboxWithHttpInfo ( string asin , string domain = default ( string ) , string zip = default ( string ) , int ? page = default ( int ? ) ) ;
145147 /// <summary>
146148 /// Get product detail
147149 /// </summary>
@@ -542,9 +544,10 @@ public interface IAmazonApiAsync : IApiAccessor
542544 /// <param name="asin"></param>
543545 /// <param name="domain"> (optional, default to "com")</param>
544546 /// <param name="zip"> (optional)</param>
547+ /// <param name="page">Offer page, 10 rows each (optional, default to 1)</param>
545548 /// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
546549 /// <returns>Task of Object</returns>
547- System . Threading . Tasks . Task < Object > AmazonGetAllSellerOffersBuyboxAsync ( string asin , string domain = default ( string ) , string zip = default ( string ) , System . Threading . CancellationToken cancellationToken = default ( global ::System . Threading . CancellationToken ) ) ;
550+ System . Threading . Tasks . Task < Object > AmazonGetAllSellerOffersBuyboxAsync ( string asin , string domain = default ( string ) , string zip = default ( string ) , int ? page = default ( int ? ) , System . Threading . CancellationToken cancellationToken = default ( global ::System . Threading . CancellationToken ) ) ;
548551
549552 /// <summary>
550553 /// Get all seller offers (buybox)
@@ -556,9 +559,10 @@ public interface IAmazonApiAsync : IApiAccessor
556559 /// <param name="asin"></param>
557560 /// <param name="domain"> (optional, default to "com")</param>
558561 /// <param name="zip"> (optional)</param>
562+ /// <param name="page">Offer page, 10 rows each (optional, default to 1)</param>
559563 /// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
560564 /// <returns>Task of ApiResponse (Object)</returns>
561- System . Threading . Tasks . Task < ApiResponse < Object > > AmazonGetAllSellerOffersBuyboxWithHttpInfoAsync ( string asin , string domain = default ( string ) , string zip = default ( string ) , System . Threading . CancellationToken cancellationToken = default ( global ::System . Threading . CancellationToken ) ) ;
565+ System . Threading . Tasks . Task < ApiResponse < Object > > AmazonGetAllSellerOffersBuyboxWithHttpInfoAsync ( string asin , string domain = default ( string ) , string zip = default ( string ) , int ? page = default ( int ? ) , System . Threading . CancellationToken cancellationToken = default ( global ::System . Threading . CancellationToken ) ) ;
562566 /// <summary>
563567 /// Get product detail
564568 /// </summary>
@@ -1614,10 +1618,11 @@ public ScrapeBadger.Client.ApiResponse<Object> AmazonAmazonScraperHealthCheckHea
16141618 /// <param name="asin"></param>
16151619 /// <param name="domain"> (optional, default to "com")</param>
16161620 /// <param name="zip"> (optional)</param>
1621+ /// <param name="page">Offer page, 10 rows each (optional, default to 1)</param>
16171622 /// <returns>Object</returns>
1618- public Object AmazonGetAllSellerOffersBuybox ( string asin , string domain = default ( string ) , string zip = default ( string ) )
1623+ public Object AmazonGetAllSellerOffersBuybox ( string asin , string domain = default ( string ) , string zip = default ( string ) , int ? page = default ( int ? ) )
16191624 {
1620- ScrapeBadger . Client . ApiResponse < Object > localVarResponse = AmazonGetAllSellerOffersBuyboxWithHttpInfo ( asin , domain , zip ) ;
1625+ ScrapeBadger . Client . ApiResponse < Object > localVarResponse = AmazonGetAllSellerOffersBuyboxWithHttpInfo ( asin , domain , zip , page ) ;
16211626 return localVarResponse . Data ;
16221627 }
16231628
@@ -1628,8 +1633,9 @@ public ScrapeBadger.Client.ApiResponse<Object> AmazonAmazonScraperHealthCheckHea
16281633 /// <param name="asin"></param>
16291634 /// <param name="domain"> (optional, default to "com")</param>
16301635 /// <param name="zip"> (optional)</param>
1636+ /// <param name="page">Offer page, 10 rows each (optional, default to 1)</param>
16311637 /// <returns>ApiResponse of Object</returns>
1632- public ScrapeBadger . Client . ApiResponse < Object > AmazonGetAllSellerOffersBuyboxWithHttpInfo ( string asin , string domain = default ( string ) , string zip = default ( string ) )
1638+ public ScrapeBadger . Client . ApiResponse < Object > AmazonGetAllSellerOffersBuyboxWithHttpInfo ( string asin , string domain = default ( string ) , string zip = default ( string ) , int ? page = default ( int ? ) )
16331639 {
16341640 // verify the required parameter 'asin' is set
16351641 if ( asin == null )
@@ -1660,6 +1666,10 @@ public ScrapeBadger.Client.ApiResponse<Object> AmazonAmazonScraperHealthCheckHea
16601666 {
16611667 localVarRequestOptions . QueryParameters . Add ( ScrapeBadger . Client . ClientUtils . ParameterToMultiMap ( "" , "zip" , zip ) ) ;
16621668 }
1669+ if ( page != null )
1670+ {
1671+ localVarRequestOptions . QueryParameters . Add ( ScrapeBadger . Client . ClientUtils . ParameterToMultiMap ( "" , "page" , page ) ) ;
1672+ }
16631673
16641674 // authentication (ApiKeyAuth) required
16651675 if ( ! string . IsNullOrEmpty ( this . Configuration . GetApiKeyWithPrefix ( "X-API-Key" ) ) )
@@ -1686,11 +1696,12 @@ public ScrapeBadger.Client.ApiResponse<Object> AmazonAmazonScraperHealthCheckHea
16861696 /// <param name="asin"></param>
16871697 /// <param name="domain"> (optional, default to "com")</param>
16881698 /// <param name="zip"> (optional)</param>
1699+ /// <param name="page">Offer page, 10 rows each (optional, default to 1)</param>
16891700 /// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
16901701 /// <returns>Task of Object</returns>
1691- public async System . Threading . Tasks . Task < Object > AmazonGetAllSellerOffersBuyboxAsync ( string asin , string domain = default ( string ) , string zip = default ( string ) , System . Threading . CancellationToken cancellationToken = default ( global ::System . Threading . CancellationToken ) )
1702+ public async System . Threading . Tasks . Task < Object > AmazonGetAllSellerOffersBuyboxAsync ( string asin , string domain = default ( string ) , string zip = default ( string ) , int ? page = default ( int ? ) , System . Threading . CancellationToken cancellationToken = default ( global ::System . Threading . CancellationToken ) )
16921703 {
1693- ScrapeBadger . Client . ApiResponse < Object > localVarResponse = await AmazonGetAllSellerOffersBuyboxWithHttpInfoAsync ( asin , domain , zip , cancellationToken ) . ConfigureAwait ( false ) ;
1704+ ScrapeBadger . Client . ApiResponse < Object > localVarResponse = await AmazonGetAllSellerOffersBuyboxWithHttpInfoAsync ( asin , domain , zip , page , cancellationToken ) . ConfigureAwait ( false ) ;
16941705 return localVarResponse . Data ;
16951706 }
16961707
@@ -1701,9 +1712,10 @@ public ScrapeBadger.Client.ApiResponse<Object> AmazonAmazonScraperHealthCheckHea
17011712 /// <param name="asin"></param>
17021713 /// <param name="domain"> (optional, default to "com")</param>
17031714 /// <param name="zip"> (optional)</param>
1715+ /// <param name="page">Offer page, 10 rows each (optional, default to 1)</param>
17041716 /// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
17051717 /// <returns>Task of ApiResponse (Object)</returns>
1706- public async System . Threading . Tasks . Task < ScrapeBadger . Client . ApiResponse < Object > > AmazonGetAllSellerOffersBuyboxWithHttpInfoAsync ( string asin , string domain = default ( string ) , string zip = default ( string ) , System . Threading . CancellationToken cancellationToken = default ( global ::System . Threading . CancellationToken ) )
1718+ public async System . Threading . Tasks . Task < ScrapeBadger . Client . ApiResponse < Object > > AmazonGetAllSellerOffersBuyboxWithHttpInfoAsync ( string asin , string domain = default ( string ) , string zip = default ( string ) , int ? page = default ( int ? ) , System . Threading . CancellationToken cancellationToken = default ( global ::System . Threading . CancellationToken ) )
17071719 {
17081720 // verify the required parameter 'asin' is set
17091721 if ( asin == null )
@@ -1736,6 +1748,10 @@ public ScrapeBadger.Client.ApiResponse<Object> AmazonAmazonScraperHealthCheckHea
17361748 {
17371749 localVarRequestOptions . QueryParameters . Add ( ScrapeBadger . Client . ClientUtils . ParameterToMultiMap ( "" , "zip" , zip ) ) ;
17381750 }
1751+ if ( page != null )
1752+ {
1753+ localVarRequestOptions . QueryParameters . Add ( ScrapeBadger . Client . ClientUtils . ParameterToMultiMap ( "" , "page" , page ) ) ;
1754+ }
17391755
17401756 // authentication (ApiKeyAuth) required
17411757 if ( ! string . IsNullOrEmpty ( this . Configuration . GetApiKeyWithPrefix ( "X-API-Key" ) ) )
0 commit comments