@emilgroup/claim-sdk 1.10.0 → 1.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. package/README.md +2 -2
  2. package/dist/api/claim-statuses-api.d.ts +309 -0
  3. package/dist/api/claim-statuses-api.js +531 -0
  4. package/dist/api/claims-api.d.ts +441 -0
  5. package/dist/api/claims-api.js +729 -0
  6. package/dist/api/default-api.d.ts +66 -0
  7. package/dist/api/default-api.js +196 -0
  8. package/dist/api/settlements-api.d.ts +375 -0
  9. package/dist/api/settlements-api.js +630 -0
  10. package/dist/api.d.ts +15 -0
  11. package/dist/api.js +33 -0
  12. package/dist/base.d.ts +74 -0
  13. package/dist/base.js +298 -0
  14. package/dist/common.d.ts +91 -0
  15. package/dist/common.js +276 -0
  16. package/dist/configuration.d.ts +83 -0
  17. package/dist/configuration.js +44 -0
  18. package/dist/index.d.ts +15 -0
  19. package/dist/index.js +36 -0
  20. package/dist/models/claim-class.d.ts +156 -0
  21. package/dist/models/claim-class.js +15 -0
  22. package/dist/models/claim-status-class.d.ts +36 -0
  23. package/dist/models/claim-status-class.js +15 -0
  24. package/dist/models/create-claim-request-dto.d.ts +126 -0
  25. package/dist/models/create-claim-request-dto.js +15 -0
  26. package/dist/models/create-claim-response-class.d.ts +25 -0
  27. package/dist/models/create-claim-response-class.js +15 -0
  28. package/dist/models/create-claim-status-request-dto.d.ts +30 -0
  29. package/dist/models/create-claim-status-request-dto.js +15 -0
  30. package/dist/models/create-claim-status-response-class.d.ts +25 -0
  31. package/dist/models/create-claim-status-response-class.js +15 -0
  32. package/dist/models/create-settlement-request-dto.d.ts +48 -0
  33. package/dist/models/create-settlement-request-dto.js +15 -0
  34. package/dist/models/create-settlement-response-class.d.ts +25 -0
  35. package/dist/models/create-settlement-response-class.js +15 -0
  36. package/dist/models/get-claim-response-class.d.ts +25 -0
  37. package/dist/models/get-claim-response-class.js +15 -0
  38. package/dist/models/get-claim-status-response-class.d.ts +25 -0
  39. package/dist/models/get-claim-status-response-class.js +15 -0
  40. package/dist/models/get-settlement-response-class.d.ts +25 -0
  41. package/dist/models/get-settlement-response-class.js +15 -0
  42. package/dist/models/index.d.ts +23 -0
  43. package/dist/models/index.js +39 -0
  44. package/dist/models/inline-response200.d.ts +54 -0
  45. package/dist/models/inline-response200.js +15 -0
  46. package/dist/models/inline-response503.d.ts +54 -0
  47. package/dist/models/inline-response503.js +15 -0
  48. package/dist/models/list-claim-statuses-response-class.d.ts +31 -0
  49. package/dist/models/list-claim-statuses-response-class.js +15 -0
  50. package/dist/models/list-claims-response-class.d.ts +31 -0
  51. package/dist/models/list-claims-response-class.js +15 -0
  52. package/dist/models/list-settlements-response-class.d.ts +31 -0
  53. package/dist/models/list-settlements-response-class.js +15 -0
  54. package/dist/models/patch-claim-request-dto.d.ts +120 -0
  55. package/dist/models/patch-claim-request-dto.js +15 -0
  56. package/dist/models/patch-claim-response-class.d.ts +25 -0
  57. package/dist/models/patch-claim-response-class.js +15 -0
  58. package/dist/models/settlement-class.d.ts +78 -0
  59. package/dist/models/settlement-class.js +15 -0
  60. package/dist/models/update-claim-request-dto.d.ts +120 -0
  61. package/dist/models/update-claim-request-dto.js +15 -0
  62. package/dist/models/update-claim-response-class.d.ts +25 -0
  63. package/dist/models/update-claim-response-class.js +15 -0
  64. package/dist/models/update-settlement-request-dto.d.ts +54 -0
  65. package/dist/models/update-settlement-request-dto.js +15 -0
  66. package/dist/models/update-settlement-response-class.d.ts +25 -0
  67. package/dist/models/update-settlement-response-class.js +15 -0
  68. package/models/create-claim-request-dto.ts +12 -12
  69. package/models/patch-claim-request-dto.ts +0 -6
  70. package/models/update-claim-request-dto.ts +12 -18
  71. package/package.json +2 -1
package/README.md CHANGED
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
17
17
  Navigate to the folder of your consuming project and run one of the following commands:
18
18
 
19
19
  ```
20
- npm install @emilgroup/claim-sdk@1.10.0 --save
20
+ npm install @emilgroup/claim-sdk@1.11.0 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/claim-sdk@1.10.0
24
+ yarn add @emilgroup/claim-sdk@1.11.0
25
25
  ```
26
26
 
27
27
  And then you can import `ClaimsApi`.
@@ -0,0 +1,309 @@
1
+ /**
2
+ * EMIL ClaimService
3
+ * The EMIL ClaimService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
13
+ import { Configuration } from '../configuration';
14
+ import { RequestArgs, BaseAPI } from '../base';
15
+ import { CreateClaimStatusRequestDto } from '../models';
16
+ import { CreateClaimStatusResponseClass } from '../models';
17
+ import { GetClaimStatusResponseClass } from '../models';
18
+ import { ListClaimStatusesResponseClass } from '../models';
19
+ /**
20
+ * ClaimStatusesApi - axios parameter creator
21
+ * @export
22
+ */
23
+ export declare const ClaimStatusesApiAxiosParamCreator: (configuration?: Configuration) => {
24
+ /**
25
+ * This creates a claim status in the database
26
+ * @summary Create the claim status
27
+ * @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
28
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
29
+ * @param {*} [options] Override http request option.
30
+ * @throws {RequiredError}
31
+ */
32
+ createClaimStatus: (createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
33
+ /**
34
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
35
+ * @summary Delete the claim status
36
+ * @param {number} id
37
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
38
+ * @param {*} [options] Override http request option.
39
+ * @throws {RequiredError}
40
+ */
41
+ deleteClaimStatus: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
42
+ /**
43
+ * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
44
+ * @summary Retrieve the claim status
45
+ * @param {number} id
46
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
47
+ * @param {*} [options] Override http request option.
48
+ * @throws {RequiredError}
49
+ */
50
+ getClaimStatus: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
51
+ /**
52
+ * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
53
+ * @summary List claim statuses
54
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
55
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
56
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
57
+ * @param {'id' | 'name' | 'productSlug'} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
58
+ * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
59
+ * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
60
+ * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
61
+ * @param {*} [options] Override http request option.
62
+ * @throws {RequiredError}
63
+ */
64
+ listClaimStatuses: (authorization?: string, pageSize?: any, pageToken?: any, filter?: 'id' | 'name' | 'productSlug', search?: any, order?: any, expand?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
65
+ };
66
+ /**
67
+ * ClaimStatusesApi - functional programming interface
68
+ * @export
69
+ */
70
+ export declare const ClaimStatusesApiFp: (configuration?: Configuration) => {
71
+ /**
72
+ * This creates a claim status in the database
73
+ * @summary Create the claim status
74
+ * @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
75
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
76
+ * @param {*} [options] Override http request option.
77
+ * @throws {RequiredError}
78
+ */
79
+ createClaimStatus(createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimStatusResponseClass>>;
80
+ /**
81
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
82
+ * @summary Delete the claim status
83
+ * @param {number} id
84
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
85
+ * @param {*} [options] Override http request option.
86
+ * @throws {RequiredError}
87
+ */
88
+ deleteClaimStatus(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
89
+ /**
90
+ * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
91
+ * @summary Retrieve the claim status
92
+ * @param {number} id
93
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
94
+ * @param {*} [options] Override http request option.
95
+ * @throws {RequiredError}
96
+ */
97
+ getClaimStatus(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimStatusResponseClass>>;
98
+ /**
99
+ * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
100
+ * @summary List claim statuses
101
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
102
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
103
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
104
+ * @param {'id' | 'name' | 'productSlug'} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
105
+ * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
106
+ * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
107
+ * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
108
+ * @param {*} [options] Override http request option.
109
+ * @throws {RequiredError}
110
+ */
111
+ listClaimStatuses(authorization?: string, pageSize?: any, pageToken?: any, filter?: 'id' | 'name' | 'productSlug', search?: any, order?: any, expand?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimStatusesResponseClass>>;
112
+ };
113
+ /**
114
+ * ClaimStatusesApi - factory interface
115
+ * @export
116
+ */
117
+ export declare const ClaimStatusesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
118
+ /**
119
+ * This creates a claim status in the database
120
+ * @summary Create the claim status
121
+ * @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
122
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
123
+ * @param {*} [options] Override http request option.
124
+ * @throws {RequiredError}
125
+ */
126
+ createClaimStatus(createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimStatusResponseClass>;
127
+ /**
128
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
129
+ * @summary Delete the claim status
130
+ * @param {number} id
131
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
132
+ * @param {*} [options] Override http request option.
133
+ * @throws {RequiredError}
134
+ */
135
+ deleteClaimStatus(id: number, authorization?: string, options?: any): AxiosPromise<void>;
136
+ /**
137
+ * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
138
+ * @summary Retrieve the claim status
139
+ * @param {number} id
140
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
141
+ * @param {*} [options] Override http request option.
142
+ * @throws {RequiredError}
143
+ */
144
+ getClaimStatus(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimStatusResponseClass>;
145
+ /**
146
+ * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
147
+ * @summary List claim statuses
148
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
149
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
150
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
151
+ * @param {'id' | 'name' | 'productSlug'} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
152
+ * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
153
+ * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
154
+ * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
155
+ * @param {*} [options] Override http request option.
156
+ * @throws {RequiredError}
157
+ */
158
+ listClaimStatuses(authorization?: string, pageSize?: any, pageToken?: any, filter?: 'id' | 'name' | 'productSlug', search?: any, order?: any, expand?: any, options?: any): AxiosPromise<ListClaimStatusesResponseClass>;
159
+ };
160
+ /**
161
+ * Request parameters for createClaimStatus operation in ClaimStatusesApi.
162
+ * @export
163
+ * @interface ClaimStatusesApiCreateClaimStatusRequest
164
+ */
165
+ export interface ClaimStatusesApiCreateClaimStatusRequest {
166
+ /**
167
+ *
168
+ * @type {CreateClaimStatusRequestDto}
169
+ * @memberof ClaimStatusesApiCreateClaimStatus
170
+ */
171
+ readonly createClaimStatusRequestDto: CreateClaimStatusRequestDto;
172
+ /**
173
+ * Bearer Token: provided by the login endpoint under the name accessToken.
174
+ * @type {string}
175
+ * @memberof ClaimStatusesApiCreateClaimStatus
176
+ */
177
+ readonly authorization?: string;
178
+ }
179
+ /**
180
+ * Request parameters for deleteClaimStatus operation in ClaimStatusesApi.
181
+ * @export
182
+ * @interface ClaimStatusesApiDeleteClaimStatusRequest
183
+ */
184
+ export interface ClaimStatusesApiDeleteClaimStatusRequest {
185
+ /**
186
+ *
187
+ * @type {number}
188
+ * @memberof ClaimStatusesApiDeleteClaimStatus
189
+ */
190
+ readonly id: number;
191
+ /**
192
+ * Bearer Token: provided by the login endpoint under the name accessToken.
193
+ * @type {string}
194
+ * @memberof ClaimStatusesApiDeleteClaimStatus
195
+ */
196
+ readonly authorization?: string;
197
+ }
198
+ /**
199
+ * Request parameters for getClaimStatus operation in ClaimStatusesApi.
200
+ * @export
201
+ * @interface ClaimStatusesApiGetClaimStatusRequest
202
+ */
203
+ export interface ClaimStatusesApiGetClaimStatusRequest {
204
+ /**
205
+ *
206
+ * @type {number}
207
+ * @memberof ClaimStatusesApiGetClaimStatus
208
+ */
209
+ readonly id: number;
210
+ /**
211
+ * Bearer Token: provided by the login endpoint under the name accessToken.
212
+ * @type {string}
213
+ * @memberof ClaimStatusesApiGetClaimStatus
214
+ */
215
+ readonly authorization?: string;
216
+ }
217
+ /**
218
+ * Request parameters for listClaimStatuses operation in ClaimStatusesApi.
219
+ * @export
220
+ * @interface ClaimStatusesApiListClaimStatusesRequest
221
+ */
222
+ export interface ClaimStatusesApiListClaimStatusesRequest {
223
+ /**
224
+ * Bearer Token: provided by the login endpoint under the name accessToken.
225
+ * @type {string}
226
+ * @memberof ClaimStatusesApiListClaimStatuses
227
+ */
228
+ readonly authorization?: string;
229
+ /**
230
+ * A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
231
+ * @type {any}
232
+ * @memberof ClaimStatusesApiListClaimStatuses
233
+ */
234
+ readonly pageSize?: any;
235
+ /**
236
+ * A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
237
+ * @type {any}
238
+ * @memberof ClaimStatusesApiListClaimStatuses
239
+ */
240
+ readonly pageToken?: any;
241
+ /**
242
+ * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
243
+ * @type {'id' | 'name' | 'productSlug'}
244
+ * @memberof ClaimStatusesApiListClaimStatuses
245
+ */
246
+ readonly filter?: 'id' | 'name' | 'productSlug';
247
+ /**
248
+ * Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
249
+ * @type {any}
250
+ * @memberof ClaimStatusesApiListClaimStatuses
251
+ */
252
+ readonly search?: any;
253
+ /**
254
+ * The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
255
+ * @type {any}
256
+ * @memberof ClaimStatusesApiListClaimStatuses
257
+ */
258
+ readonly order?: any;
259
+ /**
260
+ * Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
261
+ * @type {any}
262
+ * @memberof ClaimStatusesApiListClaimStatuses
263
+ */
264
+ readonly expand?: any;
265
+ }
266
+ /**
267
+ * ClaimStatusesApi - object-oriented interface
268
+ * @export
269
+ * @class ClaimStatusesApi
270
+ * @extends {BaseAPI}
271
+ */
272
+ export declare class ClaimStatusesApi extends BaseAPI {
273
+ /**
274
+ * This creates a claim status in the database
275
+ * @summary Create the claim status
276
+ * @param {ClaimStatusesApiCreateClaimStatusRequest} requestParameters Request parameters.
277
+ * @param {*} [options] Override http request option.
278
+ * @throws {RequiredError}
279
+ * @memberof ClaimStatusesApi
280
+ */
281
+ createClaimStatus(requestParameters: ClaimStatusesApiCreateClaimStatusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimStatusResponseClass, any>>;
282
+ /**
283
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
284
+ * @summary Delete the claim status
285
+ * @param {ClaimStatusesApiDeleteClaimStatusRequest} requestParameters Request parameters.
286
+ * @param {*} [options] Override http request option.
287
+ * @throws {RequiredError}
288
+ * @memberof ClaimStatusesApi
289
+ */
290
+ deleteClaimStatus(requestParameters: ClaimStatusesApiDeleteClaimStatusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
291
+ /**
292
+ * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
293
+ * @summary Retrieve the claim status
294
+ * @param {ClaimStatusesApiGetClaimStatusRequest} requestParameters Request parameters.
295
+ * @param {*} [options] Override http request option.
296
+ * @throws {RequiredError}
297
+ * @memberof ClaimStatusesApi
298
+ */
299
+ getClaimStatus(requestParameters: ClaimStatusesApiGetClaimStatusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimStatusResponseClass, any>>;
300
+ /**
301
+ * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
302
+ * @summary List claim statuses
303
+ * @param {ClaimStatusesApiListClaimStatusesRequest} requestParameters Request parameters.
304
+ * @param {*} [options] Override http request option.
305
+ * @throws {RequiredError}
306
+ * @memberof ClaimStatusesApi
307
+ */
308
+ listClaimStatuses(requestParameters?: ClaimStatusesApiListClaimStatusesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimStatusesResponseClass, any>>;
309
+ }