Skip to content

Commit 30003d3

Browse files
author
scrapebadger-bot
committed
chore: regenerate SDK from OpenAPI spec
1 parent 4199069 commit 30003d3

4 files changed

Lines changed: 64 additions & 24 deletions

File tree

api/openapi.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4574,6 +4574,15 @@ paths:
45744574
nullable: true
45754575
type: string
45764576
style: form
4577+
- description: english|japanese|chinese|korean
4578+
explode: true
4579+
in: query
4580+
name: language
4581+
required: false
4582+
schema:
4583+
nullable: true
4584+
type: string
4585+
style: form
45774586
responses:
45784587
"200":
45794588
content:
@@ -4858,6 +4867,15 @@ paths:
48584867
nullable: true
48594868
type: string
48604869
style: form
4870+
- description: english|japanese|chinese|korean
4871+
explode: true
4872+
in: query
4873+
name: language
4874+
required: false
4875+
schema:
4876+
nullable: true
4877+
type: string
4878+
style: form
48614879
responses:
48624880
"200":
48634881
content:

docs/EBayApi.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class Example {
103103

104104
<a id="ebayCompletedSoldListings"></a>
105105
# **ebayCompletedSoldListings**
106-
> Object ebayCompletedSoldListings(query, domain, categoryId, page, perPage, sortBy, condition, minPrice, maxPrice, location)
106+
> Object ebayCompletedSoldListings(query, domain, categoryId, page, perPage, sortBy, condition, minPrice, maxPrice, location, language)
107107
108108
Completed / sold listings
109109

@@ -141,8 +141,9 @@ public class Example {
141141
BigDecimal minPrice = new BigDecimal(78); // BigDecimal |
142142
BigDecimal maxPrice = new BigDecimal(78); // BigDecimal |
143143
String location = "location_example"; // String | domestic|worldwide
144+
String language = "language_example"; // String | english|japanese|chinese|korean
144145
try {
145-
Object result = apiInstance.ebayCompletedSoldListings(query, domain, categoryId, page, perPage, sortBy, condition, minPrice, maxPrice, location);
146+
Object result = apiInstance.ebayCompletedSoldListings(query, domain, categoryId, page, perPage, sortBy, condition, minPrice, maxPrice, location, language);
146147
System.out.println(result);
147148
} catch (ApiException e) {
148149
System.err.println("Exception when calling EBayApi#ebayCompletedSoldListings");
@@ -169,6 +170,7 @@ public class Example {
169170
| **minPrice** | **BigDecimal**| | [optional] |
170171
| **maxPrice** | **BigDecimal**| | [optional] |
171172
| **location** | **String**| domestic|worldwide | [optional] |
173+
| **language** | **String**| english|japanese|chinese|korean | [optional] |
172174

173175
### Return type
174176

@@ -893,7 +895,7 @@ This endpoint does not need any parameter.
893895

894896
<a id="ebaySearchListings"></a>
895897
# **ebaySearchListings**
896-
> Object ebaySearchListings(query, domain, categoryId, page, perPage, sortBy, condition, buyingFormat, minPrice, maxPrice, freeShipping, location)
898+
> Object ebaySearchListings(query, domain, categoryId, page, perPage, sortBy, condition, buyingFormat, minPrice, maxPrice, freeShipping, location, language)
897899
898900
Search listings
899901

@@ -933,8 +935,9 @@ public class Example {
933935
BigDecimal maxPrice = new BigDecimal(78); // BigDecimal |
934936
Boolean freeShipping = false; // Boolean |
935937
String location = "location_example"; // String | domestic|worldwide
938+
String language = "language_example"; // String | english|japanese|chinese|korean
936939
try {
937-
Object result = apiInstance.ebaySearchListings(query, domain, categoryId, page, perPage, sortBy, condition, buyingFormat, minPrice, maxPrice, freeShipping, location);
940+
Object result = apiInstance.ebaySearchListings(query, domain, categoryId, page, perPage, sortBy, condition, buyingFormat, minPrice, maxPrice, freeShipping, location, language);
938941
System.out.println(result);
939942
} catch (ApiException e) {
940943
System.err.println("Exception when calling EBayApi#ebaySearchListings");
@@ -963,6 +966,7 @@ public class Example {
963966
| **maxPrice** | **BigDecimal**| | [optional] |
964967
| **freeShipping** | **Boolean**| | [optional] [default to false] |
965968
| **location** | **String**| domestic|worldwide | [optional] |
969+
| **language** | **String**| english|japanese|chinese|korean | [optional] |
966970

967971
### Return type
968972

0 commit comments

Comments
 (0)