Skip to content

Commit 32b4968

Browse files
author
Azure DevOps
committed
Auto generated by swagger-codegen-cli
1 parent f25f3dc commit 32b4968

849 files changed

Lines changed: 1175 additions & 940 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Flipdish Open API v1.0
44
- API version: v1.0
5-
- Build date: 2026-03-23T17:48:47.036Z
5+
- Build date: 2026-03-25T13:21:02.790Z
66

77
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
88

@@ -1067,6 +1067,7 @@ Class | Method | HTTP request | Description
10671067
- [PayoutReport3DetailsSummary](docs/PayoutReport3DetailsSummary.md)
10681068
- [PayoutReport3Overview](docs/PayoutReport3Overview.md)
10691069
- [PayoutReport3OverviewHeader](docs/PayoutReport3OverviewHeader.md)
1070+
- [PayoutReport3Property](docs/PayoutReport3Property.md)
10701071
- [PayoutReport3RefundedOrder](docs/PayoutReport3RefundedOrder.md)
10711072
- [PayoutReport3Store](docs/PayoutReport3Store.md)
10721073
- [PayoutReport3StorePayout](docs/PayoutReport3StorePayout.md)

docs/PayoutReport3Overview.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**payoutReport3OverviewHeader** | [**PayoutReport3OverviewHeader**](PayoutReport3OverviewHeader.md) | | [optional]
88
**payoutStores** | [**List<PayoutReport3Store>**](PayoutReport3Store.md) | | [optional]
9+
**payoutProperties** | [**List<PayoutReport3Property>**](PayoutReport3Property.md) | | [optional]
910

1011

1112

docs/PayoutReport3Property.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
# PayoutReport3Property
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**propertyId** | **String** | | [optional]
8+
**propertyName** | **String** | | [optional]
9+
10+
11+

docs/PayoutReportsApi.md

Lines changed: 32 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Method | HTTP request | Description
1717

1818
<a name="getPayoutReport3Details"></a>
1919
# **getPayoutReport3Details**
20-
> RestApiResultPayoutReport3Details getPayoutReport3Details(appId, bankAccountId, payoutId, storeIds)
20+
> RestApiResultPayoutReport3Details getPayoutReport3Details(appId, bankAccountId, payoutId, storeIds, propertyIds)
2121
2222

2323

@@ -41,8 +41,9 @@ String appId = "appId_example"; // String |
4141
Integer bankAccountId = 56; // Integer |
4242
Integer payoutId = 56; // Integer |
4343
List<Integer> storeIds = Arrays.asList(56); // List<Integer> |
44+
List<String> propertyIds = Arrays.asList("propertyIds_example"); // List<String> |
4445
try {
45-
RestApiResultPayoutReport3Details result = apiInstance.getPayoutReport3Details(appId, bankAccountId, payoutId, storeIds);
46+
RestApiResultPayoutReport3Details result = apiInstance.getPayoutReport3Details(appId, bankAccountId, payoutId, storeIds, propertyIds);
4647
System.out.println(result);
4748
} catch (ApiException e) {
4849
System.err.println("Exception when calling PayoutReportsApi#getPayoutReport3Details");
@@ -58,6 +59,7 @@ Name | Type | Description | Notes
5859
**bankAccountId** | **Integer**| |
5960
**payoutId** | **Integer**| |
6061
**storeIds** | [**List&lt;Integer&gt;**](Integer.md)| | [optional]
62+
**propertyIds** | [**List&lt;String&gt;**](String.md)| | [optional]
6163

6264
### Return type
6365

@@ -129,7 +131,7 @@ Name | Type | Description | Notes
129131

130132
<a name="getPayoutReport3RefundedOrders"></a>
131133
# **getPayoutReport3RefundedOrders**
132-
> RestApiPaginationResultPayoutReport3RefundedOrder getPayoutReport3RefundedOrders(appId, bankAccountId, payoutId, storeIds, page, limit)
134+
> RestApiPaginationResultPayoutReport3RefundedOrder getPayoutReport3RefundedOrders(appId, bankAccountId, payoutId, storeIds, propertyIds, page, limit)
133135
134136

135137

@@ -153,10 +155,11 @@ String appId = "appId_example"; // String |
153155
Integer bankAccountId = 56; // Integer |
154156
Integer payoutId = 56; // Integer |
155157
List<Integer> storeIds = Arrays.asList(56); // List<Integer> |
158+
List<String> propertyIds = Arrays.asList("propertyIds_example"); // List<String> |
156159
Integer page = 56; // Integer |
157160
Integer limit = 56; // Integer |
158161
try {
159-
RestApiPaginationResultPayoutReport3RefundedOrder result = apiInstance.getPayoutReport3RefundedOrders(appId, bankAccountId, payoutId, storeIds, page, limit);
162+
RestApiPaginationResultPayoutReport3RefundedOrder result = apiInstance.getPayoutReport3RefundedOrders(appId, bankAccountId, payoutId, storeIds, propertyIds, page, limit);
160163
System.out.println(result);
161164
} catch (ApiException e) {
162165
System.err.println("Exception when calling PayoutReportsApi#getPayoutReport3RefundedOrders");
@@ -172,6 +175,7 @@ Name | Type | Description | Notes
172175
**bankAccountId** | **Integer**| |
173176
**payoutId** | **Integer**| |
174177
**storeIds** | [**List&lt;Integer&gt;**](Integer.md)| | [optional]
178+
**propertyIds** | [**List&lt;String&gt;**](String.md)| | [optional]
175179
**page** | **Integer**| | [optional]
176180
**limit** | **Integer**| | [optional]
177181

@@ -190,7 +194,7 @@ Name | Type | Description | Notes
190194

191195
<a name="getPayoutReport3Stores"></a>
192196
# **getPayoutReport3Stores**
193-
> RestApiResultPayoutReport3StorePayouts getPayoutReport3Stores(appId, bankAccountId, payoutId, stores)
197+
> RestApiResultPayoutReport3StorePayouts getPayoutReport3Stores(appId, bankAccountId, payoutId, stores, propertyIds)
194198
195199

196200

@@ -214,8 +218,9 @@ String appId = "appId_example"; // String |
214218
Integer bankAccountId = 56; // Integer |
215219
Integer payoutId = 56; // Integer |
216220
List<Integer> stores = Arrays.asList(56); // List<Integer> |
221+
List<String> propertyIds = Arrays.asList("propertyIds_example"); // List<String> |
217222
try {
218-
RestApiResultPayoutReport3StorePayouts result = apiInstance.getPayoutReport3Stores(appId, bankAccountId, payoutId, stores);
223+
RestApiResultPayoutReport3StorePayouts result = apiInstance.getPayoutReport3Stores(appId, bankAccountId, payoutId, stores, propertyIds);
219224
System.out.println(result);
220225
} catch (ApiException e) {
221226
System.err.println("Exception when calling PayoutReportsApi#getPayoutReport3Stores");
@@ -231,6 +236,7 @@ Name | Type | Description | Notes
231236
**bankAccountId** | **Integer**| |
232237
**payoutId** | **Integer**| |
233238
**stores** | [**List&lt;Integer&gt;**](Integer.md)| | [optional]
239+
**propertyIds** | [**List&lt;String&gt;**](String.md)| | [optional]
234240

235241
### Return type
236242

@@ -247,7 +253,7 @@ Name | Type | Description | Notes
247253

248254
<a name="payoutReport3ExportPayoutChargebacks"></a>
249255
# **payoutReport3ExportPayoutChargebacks**
250-
> RestApiResultFileCreationResult payoutReport3ExportPayoutChargebacks(appId, bankAccountId, payoutId, stores)
256+
> RestApiResultFileCreationResult payoutReport3ExportPayoutChargebacks(appId, bankAccountId, payoutId, stores, propertyIds)
251257
252258

253259

@@ -271,8 +277,9 @@ String appId = "appId_example"; // String |
271277
Integer bankAccountId = 56; // Integer |
272278
Integer payoutId = 56; // Integer |
273279
List<Integer> stores = Arrays.asList(56); // List<Integer> |
280+
List<String> propertyIds = Arrays.asList("propertyIds_example"); // List<String> |
274281
try {
275-
RestApiResultFileCreationResult result = apiInstance.payoutReport3ExportPayoutChargebacks(appId, bankAccountId, payoutId, stores);
282+
RestApiResultFileCreationResult result = apiInstance.payoutReport3ExportPayoutChargebacks(appId, bankAccountId, payoutId, stores, propertyIds);
276283
System.out.println(result);
277284
} catch (ApiException e) {
278285
System.err.println("Exception when calling PayoutReportsApi#payoutReport3ExportPayoutChargebacks");
@@ -288,6 +295,7 @@ Name | Type | Description | Notes
288295
**bankAccountId** | **Integer**| |
289296
**payoutId** | **Integer**| |
290297
**stores** | [**List&lt;Integer&gt;**](Integer.md)| | [optional]
298+
**propertyIds** | [**List&lt;String&gt;**](String.md)| | [optional]
291299

292300
### Return type
293301

@@ -304,7 +312,7 @@ Name | Type | Description | Notes
304312

305313
<a name="payoutReport3ExportPayoutOrders"></a>
306314
# **payoutReport3ExportPayoutOrders**
307-
> RestApiResultFileCreationResult payoutReport3ExportPayoutOrders(appId, bankAccountId, payoutId, stores)
315+
> RestApiResultFileCreationResult payoutReport3ExportPayoutOrders(appId, bankAccountId, payoutId, stores, propertyIds)
308316
309317

310318

@@ -328,8 +336,9 @@ String appId = "appId_example"; // String |
328336
Integer bankAccountId = 56; // Integer |
329337
Integer payoutId = 56; // Integer |
330338
List<Integer> stores = Arrays.asList(56); // List<Integer> |
339+
List<String> propertyIds = Arrays.asList("propertyIds_example"); // List<String> |
331340
try {
332-
RestApiResultFileCreationResult result = apiInstance.payoutReport3ExportPayoutOrders(appId, bankAccountId, payoutId, stores);
341+
RestApiResultFileCreationResult result = apiInstance.payoutReport3ExportPayoutOrders(appId, bankAccountId, payoutId, stores, propertyIds);
333342
System.out.println(result);
334343
} catch (ApiException e) {
335344
System.err.println("Exception when calling PayoutReportsApi#payoutReport3ExportPayoutOrders");
@@ -345,6 +354,7 @@ Name | Type | Description | Notes
345354
**bankAccountId** | **Integer**| |
346355
**payoutId** | **Integer**| |
347356
**stores** | [**List&lt;Integer&gt;**](Integer.md)| | [optional]
357+
**propertyIds** | [**List&lt;String&gt;**](String.md)| | [optional]
348358

349359
### Return type
350360

@@ -361,7 +371,7 @@ Name | Type | Description | Notes
361371

362372
<a name="payoutReport3ExportPayoutPosSales"></a>
363373
# **payoutReport3ExportPayoutPosSales**
364-
> RestApiResultFileCreationResult payoutReport3ExportPayoutPosSales(appId, bankAccountId, payoutId, stores)
374+
> RestApiResultFileCreationResult payoutReport3ExportPayoutPosSales(appId, bankAccountId, payoutId, stores, propertyIds)
365375
366376

367377

@@ -385,8 +395,9 @@ String appId = "appId_example"; // String |
385395
Integer bankAccountId = 56; // Integer |
386396
Integer payoutId = 56; // Integer |
387397
List<Integer> stores = Arrays.asList(56); // List<Integer> |
398+
List<String> propertyIds = Arrays.asList("propertyIds_example"); // List<String> |
388399
try {
389-
RestApiResultFileCreationResult result = apiInstance.payoutReport3ExportPayoutPosSales(appId, bankAccountId, payoutId, stores);
400+
RestApiResultFileCreationResult result = apiInstance.payoutReport3ExportPayoutPosSales(appId, bankAccountId, payoutId, stores, propertyIds);
390401
System.out.println(result);
391402
} catch (ApiException e) {
392403
System.err.println("Exception when calling PayoutReportsApi#payoutReport3ExportPayoutPosSales");
@@ -402,6 +413,7 @@ Name | Type | Description | Notes
402413
**bankAccountId** | **Integer**| |
403414
**payoutId** | **Integer**| |
404415
**stores** | [**List&lt;Integer&gt;**](Integer.md)| | [optional]
416+
**propertyIds** | [**List&lt;String&gt;**](String.md)| | [optional]
405417

406418
### Return type
407419

@@ -418,7 +430,7 @@ Name | Type | Description | Notes
418430

419431
<a name="payoutReport3ExportPayoutRefundedOrders"></a>
420432
# **payoutReport3ExportPayoutRefundedOrders**
421-
> RestApiResultFileCreationResult payoutReport3ExportPayoutRefundedOrders(appId, bankAccountId, payoutId, stores)
433+
> RestApiResultFileCreationResult payoutReport3ExportPayoutRefundedOrders(appId, bankAccountId, payoutId, stores, propertyIds)
422434
423435

424436

@@ -442,8 +454,9 @@ String appId = "appId_example"; // String |
442454
Integer bankAccountId = 56; // Integer |
443455
Integer payoutId = 56; // Integer |
444456
List<Integer> stores = Arrays.asList(56); // List<Integer> |
457+
List<String> propertyIds = Arrays.asList("propertyIds_example"); // List<String> |
445458
try {
446-
RestApiResultFileCreationResult result = apiInstance.payoutReport3ExportPayoutRefundedOrders(appId, bankAccountId, payoutId, stores);
459+
RestApiResultFileCreationResult result = apiInstance.payoutReport3ExportPayoutRefundedOrders(appId, bankAccountId, payoutId, stores, propertyIds);
447460
System.out.println(result);
448461
} catch (ApiException e) {
449462
System.err.println("Exception when calling PayoutReportsApi#payoutReport3ExportPayoutRefundedOrders");
@@ -459,6 +472,7 @@ Name | Type | Description | Notes
459472
**bankAccountId** | **Integer**| |
460473
**payoutId** | **Integer**| |
461474
**stores** | [**List&lt;Integer&gt;**](Integer.md)| | [optional]
475+
**propertyIds** | [**List&lt;String&gt;**](String.md)| | [optional]
462476

463477
### Return type
464478

@@ -475,7 +489,7 @@ Name | Type | Description | Notes
475489

476490
<a name="payoutReport3ExportPayoutStores"></a>
477491
# **payoutReport3ExportPayoutStores**
478-
> RestApiResultFileCreationResult payoutReport3ExportPayoutStores(appId, bankAccountId, payoutId, stores)
492+
> RestApiResultFileCreationResult payoutReport3ExportPayoutStores(appId, bankAccountId, payoutId, stores, propertyIds)
479493
480494

481495

@@ -499,8 +513,9 @@ String appId = "appId_example"; // String |
499513
Integer bankAccountId = 56; // Integer |
500514
Integer payoutId = 56; // Integer |
501515
List<Integer> stores = Arrays.asList(56); // List<Integer> |
516+
List<String> propertyIds = Arrays.asList("propertyIds_example"); // List<String> |
502517
try {
503-
RestApiResultFileCreationResult result = apiInstance.payoutReport3ExportPayoutStores(appId, bankAccountId, payoutId, stores);
518+
RestApiResultFileCreationResult result = apiInstance.payoutReport3ExportPayoutStores(appId, bankAccountId, payoutId, stores, propertyIds);
504519
System.out.println(result);
505520
} catch (ApiException e) {
506521
System.err.println("Exception when calling PayoutReportsApi#payoutReport3ExportPayoutStores");
@@ -516,6 +531,7 @@ Name | Type | Description | Notes
516531
**bankAccountId** | **Integer**| |
517532
**payoutId** | **Integer**| |
518533
**stores** | [**List&lt;Integer&gt;**](Integer.md)| | [optional]
534+
**propertyIds** | [**List&lt;String&gt;**](String.md)| | [optional]
519535

520536
### Return type
521537

src/main/java/com/flipdish/apiclient/ApiException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import java.util.Map;
1717
import java.util.List;
1818

19-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2026-03-23T17:48:47.036Z")
19+
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2026-03-25T13:21:02.790Z")
2020
public class ApiException extends Exception {
2121
private int code = 0;
2222
private Map<String, List<String>> responseHeaders = null;

src/main/java/com/flipdish/apiclient/Configuration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
package com.flipdish.apiclient;
1515

16-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2026-03-23T17:48:47.036Z")
16+
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2026-03-25T13:21:02.790Z")
1717
public class Configuration {
1818
private static ApiClient defaultApiClient = new ApiClient();
1919

src/main/java/com/flipdish/apiclient/JSON.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -862,6 +862,7 @@
862862
import com.flipdish.apiclient.model.*;
863863
import com.flipdish.apiclient.model.*;
864864
import com.flipdish.apiclient.model.*;
865+
import com.flipdish.apiclient.model.*;
865866
import okio.ByteString;
866867

867868
import java.io.IOException;

src/main/java/com/flipdish/apiclient/Pair.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
package com.flipdish.apiclient;
1515

16-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2026-03-23T17:48:47.036Z")
16+
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2026-03-25T13:21:02.790Z")
1717
public class Pair {
1818
private String name = "";
1919
private String value = "";

src/main/java/com/flipdish/apiclient/StringUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
package com.flipdish.apiclient;
1515

16-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2026-03-23T17:48:47.036Z")
16+
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2026-03-25T13:21:02.790Z")
1717
public class StringUtil {
1818
/**
1919
* Check if the given array contains the given value (with case-insensitive comparison).

0 commit comments

Comments
 (0)