@emilgroup/claim-sdk 1.33.1-beta.4 → 1.34.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.
- package/README.md +2 -2
- package/api/claim-partner-roles-api.ts +20 -20
- package/api/claim-partners-api.ts +16 -16
- package/api/claim-regulations-api.ts +20 -20
- package/api/claim-statuses-api.ts +16 -16
- package/api/claims-api.ts +28 -28
- package/api/settlements-api.ts +20 -20
- package/common.ts +2 -2
- package/configuration.ts +9 -0
- package/dist/api/claim-partner-roles-api.d.ts +20 -20
- package/dist/api/claim-partner-roles-api.js +20 -20
- package/dist/api/claim-partners-api.d.ts +16 -16
- package/dist/api/claim-partners-api.js +16 -16
- package/dist/api/claim-regulations-api.d.ts +20 -20
- package/dist/api/claim-regulations-api.js +20 -20
- package/dist/api/claim-statuses-api.d.ts +16 -16
- package/dist/api/claim-statuses-api.js +16 -16
- package/dist/api/claims-api.d.ts +28 -28
- package/dist/api/claims-api.js +28 -28
- package/dist/api/settlements-api.d.ts +20 -20
- package/dist/api/settlements-api.js +20 -20
- package/dist/common.js +2 -2
- package/dist/configuration.d.ts +6 -0
- package/dist/configuration.js +8 -0
- package/package.json +1 -1
|
@@ -24,7 +24,7 @@ import { UpdateClaimPartnerRoleResponseClass } from '../models';
|
|
|
24
24
|
*/
|
|
25
25
|
export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
26
26
|
/**
|
|
27
|
-
* This will create a claim partner role.
|
|
27
|
+
* This will create a claim partner role.
|
|
28
28
|
* @summary Create the claim partner role
|
|
29
29
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
30
30
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -33,7 +33,7 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
33
33
|
*/
|
|
34
34
|
createClaimPartnerRole: (createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
35
35
|
/**
|
|
36
|
-
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it.
|
|
36
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it.
|
|
37
37
|
* @summary Delete the claim partner role
|
|
38
38
|
* @param {string} code Unique identifier for the object.
|
|
39
39
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -42,7 +42,7 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
42
42
|
*/
|
|
43
43
|
deleteClaimPartnerRole: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
44
44
|
/**
|
|
45
|
-
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information.
|
|
45
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information.
|
|
46
46
|
* @summary Retrieve the claim partner role
|
|
47
47
|
* @param {string} code Unique identifier for the object.
|
|
48
48
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -51,7 +51,7 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
51
51
|
*/
|
|
52
52
|
getClaimPartnerRole: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
53
53
|
/**
|
|
54
|
-
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
54
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
55
55
|
* @summary List claim partner roles
|
|
56
56
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
57
57
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -66,7 +66,7 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
66
66
|
*/
|
|
67
67
|
listClaimPartnerRole: (authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
68
68
|
/**
|
|
69
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
69
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
70
70
|
* @summary Update the claim partner role
|
|
71
71
|
* @param {string} code Unique identifier for the object.
|
|
72
72
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
@@ -82,7 +82,7 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
82
82
|
*/
|
|
83
83
|
export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) => {
|
|
84
84
|
/**
|
|
85
|
-
* This will create a claim partner role.
|
|
85
|
+
* This will create a claim partner role.
|
|
86
86
|
* @summary Create the claim partner role
|
|
87
87
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
88
88
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -91,7 +91,7 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
91
91
|
*/
|
|
92
92
|
createClaimPartnerRole(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerRoleResponseClass>>;
|
|
93
93
|
/**
|
|
94
|
-
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it.
|
|
94
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it.
|
|
95
95
|
* @summary Delete the claim partner role
|
|
96
96
|
* @param {string} code Unique identifier for the object.
|
|
97
97
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -100,7 +100,7 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
100
100
|
*/
|
|
101
101
|
deleteClaimPartnerRole(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
102
102
|
/**
|
|
103
|
-
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information.
|
|
103
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information.
|
|
104
104
|
* @summary Retrieve the claim partner role
|
|
105
105
|
* @param {string} code Unique identifier for the object.
|
|
106
106
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -109,7 +109,7 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
109
109
|
*/
|
|
110
110
|
getClaimPartnerRole(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerRoleResponseClass>>;
|
|
111
111
|
/**
|
|
112
|
-
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
112
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
113
113
|
* @summary List claim partner roles
|
|
114
114
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
115
115
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -124,7 +124,7 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
124
124
|
*/
|
|
125
125
|
listClaimPartnerRole(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPartnerRolesResponseClass>>;
|
|
126
126
|
/**
|
|
127
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
127
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
128
128
|
* @summary Update the claim partner role
|
|
129
129
|
* @param {string} code Unique identifier for the object.
|
|
130
130
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
@@ -140,7 +140,7 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
140
140
|
*/
|
|
141
141
|
export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
142
142
|
/**
|
|
143
|
-
* This will create a claim partner role.
|
|
143
|
+
* This will create a claim partner role.
|
|
144
144
|
* @summary Create the claim partner role
|
|
145
145
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
146
146
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -149,7 +149,7 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
149
149
|
*/
|
|
150
150
|
createClaimPartnerRole(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerRoleResponseClass>;
|
|
151
151
|
/**
|
|
152
|
-
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it.
|
|
152
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it.
|
|
153
153
|
* @summary Delete the claim partner role
|
|
154
154
|
* @param {string} code Unique identifier for the object.
|
|
155
155
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -158,7 +158,7 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
158
158
|
*/
|
|
159
159
|
deleteClaimPartnerRole(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
160
160
|
/**
|
|
161
|
-
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information.
|
|
161
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information.
|
|
162
162
|
* @summary Retrieve the claim partner role
|
|
163
163
|
* @param {string} code Unique identifier for the object.
|
|
164
164
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -167,7 +167,7 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
167
167
|
*/
|
|
168
168
|
getClaimPartnerRole(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerRoleResponseClass>;
|
|
169
169
|
/**
|
|
170
|
-
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
170
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
171
171
|
* @summary List claim partner roles
|
|
172
172
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
173
173
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -182,7 +182,7 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
182
182
|
*/
|
|
183
183
|
listClaimPartnerRole(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnerRolesResponseClass>;
|
|
184
184
|
/**
|
|
185
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
185
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
186
186
|
* @summary Update the claim partner role
|
|
187
187
|
* @param {string} code Unique identifier for the object.
|
|
188
188
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
@@ -337,7 +337,7 @@ export interface ClaimPartnerRolesApiUpdateClaimPartnerRoleRequest {
|
|
|
337
337
|
*/
|
|
338
338
|
export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
339
339
|
/**
|
|
340
|
-
* This will create a claim partner role.
|
|
340
|
+
* This will create a claim partner role.
|
|
341
341
|
* @summary Create the claim partner role
|
|
342
342
|
* @param {ClaimPartnerRolesApiCreateClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
343
343
|
* @param {*} [options] Override http request option.
|
|
@@ -346,7 +346,7 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
346
346
|
*/
|
|
347
347
|
createClaimPartnerRole(requestParameters: ClaimPartnerRolesApiCreateClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimPartnerRoleResponseClass, any>>;
|
|
348
348
|
/**
|
|
349
|
-
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it.
|
|
349
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it.
|
|
350
350
|
* @summary Delete the claim partner role
|
|
351
351
|
* @param {ClaimPartnerRolesApiDeleteClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
352
352
|
* @param {*} [options] Override http request option.
|
|
@@ -355,7 +355,7 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
355
355
|
*/
|
|
356
356
|
deleteClaimPartnerRole(requestParameters: ClaimPartnerRolesApiDeleteClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
357
357
|
/**
|
|
358
|
-
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information.
|
|
358
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information.
|
|
359
359
|
* @summary Retrieve the claim partner role
|
|
360
360
|
* @param {ClaimPartnerRolesApiGetClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
361
361
|
* @param {*} [options] Override http request option.
|
|
@@ -364,7 +364,7 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
364
364
|
*/
|
|
365
365
|
getClaimPartnerRole(requestParameters: ClaimPartnerRolesApiGetClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimPartnerRoleResponseClass, any>>;
|
|
366
366
|
/**
|
|
367
|
-
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
367
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
368
368
|
* @summary List claim partner roles
|
|
369
369
|
* @param {ClaimPartnerRolesApiListClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
370
370
|
* @param {*} [options] Override http request option.
|
|
@@ -373,7 +373,7 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
373
373
|
*/
|
|
374
374
|
listClaimPartnerRole(requestParameters?: ClaimPartnerRolesApiListClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimPartnerRolesResponseClass, any>>;
|
|
375
375
|
/**
|
|
376
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
376
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
377
377
|
* @summary Update the claim partner role
|
|
378
378
|
* @param {ClaimPartnerRolesApiUpdateClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
379
379
|
* @param {*} [options] Override http request option.
|
|
@@ -93,7 +93,7 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
93
93
|
var _this = this;
|
|
94
94
|
return {
|
|
95
95
|
/**
|
|
96
|
-
* This will create a claim partner role.
|
|
96
|
+
* This will create a claim partner role.
|
|
97
97
|
* @summary Create the claim partner role
|
|
98
98
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
99
99
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -142,7 +142,7 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
142
142
|
});
|
|
143
143
|
},
|
|
144
144
|
/**
|
|
145
|
-
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it.
|
|
145
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it.
|
|
146
146
|
* @summary Delete the claim partner role
|
|
147
147
|
* @param {string} code Unique identifier for the object.
|
|
148
148
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -190,7 +190,7 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
190
190
|
});
|
|
191
191
|
},
|
|
192
192
|
/**
|
|
193
|
-
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information.
|
|
193
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information.
|
|
194
194
|
* @summary Retrieve the claim partner role
|
|
195
195
|
* @param {string} code Unique identifier for the object.
|
|
196
196
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -238,7 +238,7 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
238
238
|
});
|
|
239
239
|
},
|
|
240
240
|
/**
|
|
241
|
-
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
241
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
242
242
|
* @summary List claim partner roles
|
|
243
243
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
244
244
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -310,7 +310,7 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
310
310
|
});
|
|
311
311
|
},
|
|
312
312
|
/**
|
|
313
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
313
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
314
314
|
* @summary Update the claim partner role
|
|
315
315
|
* @param {string} code Unique identifier for the object.
|
|
316
316
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
@@ -373,7 +373,7 @@ var ClaimPartnerRolesApiFp = function (configuration) {
|
|
|
373
373
|
var localVarAxiosParamCreator = (0, exports.ClaimPartnerRolesApiAxiosParamCreator)(configuration);
|
|
374
374
|
return {
|
|
375
375
|
/**
|
|
376
|
-
* This will create a claim partner role.
|
|
376
|
+
* This will create a claim partner role.
|
|
377
377
|
* @summary Create the claim partner role
|
|
378
378
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
379
379
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -394,7 +394,7 @@ var ClaimPartnerRolesApiFp = function (configuration) {
|
|
|
394
394
|
});
|
|
395
395
|
},
|
|
396
396
|
/**
|
|
397
|
-
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it.
|
|
397
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it.
|
|
398
398
|
* @summary Delete the claim partner role
|
|
399
399
|
* @param {string} code Unique identifier for the object.
|
|
400
400
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -415,7 +415,7 @@ var ClaimPartnerRolesApiFp = function (configuration) {
|
|
|
415
415
|
});
|
|
416
416
|
},
|
|
417
417
|
/**
|
|
418
|
-
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information.
|
|
418
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information.
|
|
419
419
|
* @summary Retrieve the claim partner role
|
|
420
420
|
* @param {string} code Unique identifier for the object.
|
|
421
421
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -436,7 +436,7 @@ var ClaimPartnerRolesApiFp = function (configuration) {
|
|
|
436
436
|
});
|
|
437
437
|
},
|
|
438
438
|
/**
|
|
439
|
-
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
439
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
440
440
|
* @summary List claim partner roles
|
|
441
441
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
442
442
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -463,7 +463,7 @@ var ClaimPartnerRolesApiFp = function (configuration) {
|
|
|
463
463
|
});
|
|
464
464
|
},
|
|
465
465
|
/**
|
|
466
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
466
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
467
467
|
* @summary Update the claim partner role
|
|
468
468
|
* @param {string} code Unique identifier for the object.
|
|
469
469
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
@@ -495,7 +495,7 @@ var ClaimPartnerRolesApiFactory = function (configuration, basePath, axios) {
|
|
|
495
495
|
var localVarFp = (0, exports.ClaimPartnerRolesApiFp)(configuration);
|
|
496
496
|
return {
|
|
497
497
|
/**
|
|
498
|
-
* This will create a claim partner role.
|
|
498
|
+
* This will create a claim partner role.
|
|
499
499
|
* @summary Create the claim partner role
|
|
500
500
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
501
501
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -506,7 +506,7 @@ var ClaimPartnerRolesApiFactory = function (configuration, basePath, axios) {
|
|
|
506
506
|
return localVarFp.createClaimPartnerRole(createClaimPartnerRoleRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
507
507
|
},
|
|
508
508
|
/**
|
|
509
|
-
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it.
|
|
509
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it.
|
|
510
510
|
* @summary Delete the claim partner role
|
|
511
511
|
* @param {string} code Unique identifier for the object.
|
|
512
512
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -517,7 +517,7 @@ var ClaimPartnerRolesApiFactory = function (configuration, basePath, axios) {
|
|
|
517
517
|
return localVarFp.deleteClaimPartnerRole(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
518
518
|
},
|
|
519
519
|
/**
|
|
520
|
-
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information.
|
|
520
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information.
|
|
521
521
|
* @summary Retrieve the claim partner role
|
|
522
522
|
* @param {string} code Unique identifier for the object.
|
|
523
523
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -528,7 +528,7 @@ var ClaimPartnerRolesApiFactory = function (configuration, basePath, axios) {
|
|
|
528
528
|
return localVarFp.getClaimPartnerRole(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
529
529
|
},
|
|
530
530
|
/**
|
|
531
|
-
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
531
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
532
532
|
* @summary List claim partner roles
|
|
533
533
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
534
534
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -545,7 +545,7 @@ var ClaimPartnerRolesApiFactory = function (configuration, basePath, axios) {
|
|
|
545
545
|
return localVarFp.listClaimPartnerRole(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
546
546
|
},
|
|
547
547
|
/**
|
|
548
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
548
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
549
549
|
* @summary Update the claim partner role
|
|
550
550
|
* @param {string} code Unique identifier for the object.
|
|
551
551
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
@@ -571,7 +571,7 @@ var ClaimPartnerRolesApi = /** @class */ (function (_super) {
|
|
|
571
571
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
572
572
|
}
|
|
573
573
|
/**
|
|
574
|
-
* This will create a claim partner role.
|
|
574
|
+
* This will create a claim partner role.
|
|
575
575
|
* @summary Create the claim partner role
|
|
576
576
|
* @param {ClaimPartnerRolesApiCreateClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
577
577
|
* @param {*} [options] Override http request option.
|
|
@@ -583,7 +583,7 @@ var ClaimPartnerRolesApi = /** @class */ (function (_super) {
|
|
|
583
583
|
return (0, exports.ClaimPartnerRolesApiFp)(this.configuration).createClaimPartnerRole(requestParameters.createClaimPartnerRoleRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
584
584
|
};
|
|
585
585
|
/**
|
|
586
|
-
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it.
|
|
586
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it.
|
|
587
587
|
* @summary Delete the claim partner role
|
|
588
588
|
* @param {ClaimPartnerRolesApiDeleteClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
589
589
|
* @param {*} [options] Override http request option.
|
|
@@ -595,7 +595,7 @@ var ClaimPartnerRolesApi = /** @class */ (function (_super) {
|
|
|
595
595
|
return (0, exports.ClaimPartnerRolesApiFp)(this.configuration).deleteClaimPartnerRole(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
596
596
|
};
|
|
597
597
|
/**
|
|
598
|
-
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information.
|
|
598
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information.
|
|
599
599
|
* @summary Retrieve the claim partner role
|
|
600
600
|
* @param {ClaimPartnerRolesApiGetClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
601
601
|
* @param {*} [options] Override http request option.
|
|
@@ -607,7 +607,7 @@ var ClaimPartnerRolesApi = /** @class */ (function (_super) {
|
|
|
607
607
|
return (0, exports.ClaimPartnerRolesApiFp)(this.configuration).getClaimPartnerRole(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
608
608
|
};
|
|
609
609
|
/**
|
|
610
|
-
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
610
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
611
611
|
* @summary List claim partner roles
|
|
612
612
|
* @param {ClaimPartnerRolesApiListClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
613
613
|
* @param {*} [options] Override http request option.
|
|
@@ -620,7 +620,7 @@ var ClaimPartnerRolesApi = /** @class */ (function (_super) {
|
|
|
620
620
|
return (0, exports.ClaimPartnerRolesApiFp)(this.configuration).listClaimPartnerRole(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
621
621
|
};
|
|
622
622
|
/**
|
|
623
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
623
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
624
624
|
* @summary Update the claim partner role
|
|
625
625
|
* @param {ClaimPartnerRolesApiUpdateClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
626
626
|
* @param {*} [options] Override http request option.
|
|
@@ -22,7 +22,7 @@ import { ListClaimPartnersResponseClass } from '../models';
|
|
|
22
22
|
*/
|
|
23
23
|
export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
24
24
|
/**
|
|
25
|
-
* This will create a claim partner.
|
|
25
|
+
* This will create a claim partner.
|
|
26
26
|
* @summary Create the claim partner
|
|
27
27
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
28
28
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
@@ -32,7 +32,7 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
32
32
|
*/
|
|
33
33
|
createClaimPartner: (claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
34
34
|
/**
|
|
35
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
35
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
36
36
|
* @summary Delete the claim partner
|
|
37
37
|
* @param {number} id
|
|
38
38
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -41,7 +41,7 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
41
41
|
*/
|
|
42
42
|
deleteClaimPartner: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
43
43
|
/**
|
|
44
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
|
|
44
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
|
|
45
45
|
* @summary Retrieve the claim partner
|
|
46
46
|
* @param {number} id
|
|
47
47
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -50,7 +50,7 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
50
50
|
*/
|
|
51
51
|
getClaimPartner: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
52
52
|
/**
|
|
53
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
53
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
54
54
|
* @summary List claim partners
|
|
55
55
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
56
56
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -71,7 +71,7 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
71
71
|
*/
|
|
72
72
|
export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
73
73
|
/**
|
|
74
|
-
* This will create a claim partner.
|
|
74
|
+
* This will create a claim partner.
|
|
75
75
|
* @summary Create the claim partner
|
|
76
76
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
77
77
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
@@ -81,7 +81,7 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
81
81
|
*/
|
|
82
82
|
createClaimPartner(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerResponseClass>>;
|
|
83
83
|
/**
|
|
84
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
84
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
85
85
|
* @summary Delete the claim partner
|
|
86
86
|
* @param {number} id
|
|
87
87
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -90,7 +90,7 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
90
90
|
*/
|
|
91
91
|
deleteClaimPartner(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
92
92
|
/**
|
|
93
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
|
|
93
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
|
|
94
94
|
* @summary Retrieve the claim partner
|
|
95
95
|
* @param {number} id
|
|
96
96
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -99,7 +99,7 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
99
99
|
*/
|
|
100
100
|
getClaimPartner(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerResponseClass>>;
|
|
101
101
|
/**
|
|
102
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
102
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
103
103
|
* @summary List claim partners
|
|
104
104
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
105
105
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -120,7 +120,7 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
120
120
|
*/
|
|
121
121
|
export declare const ClaimPartnersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
122
122
|
/**
|
|
123
|
-
* This will create a claim partner.
|
|
123
|
+
* This will create a claim partner.
|
|
124
124
|
* @summary Create the claim partner
|
|
125
125
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
126
126
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
@@ -130,7 +130,7 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
130
130
|
*/
|
|
131
131
|
createClaimPartner(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerResponseClass>;
|
|
132
132
|
/**
|
|
133
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
133
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
134
134
|
* @summary Delete the claim partner
|
|
135
135
|
* @param {number} id
|
|
136
136
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -139,7 +139,7 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
139
139
|
*/
|
|
140
140
|
deleteClaimPartner(id: number, authorization?: string, options?: any): AxiosPromise<void>;
|
|
141
141
|
/**
|
|
142
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
|
|
142
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
|
|
143
143
|
* @summary Retrieve the claim partner
|
|
144
144
|
* @param {number} id
|
|
145
145
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -148,7 +148,7 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
148
148
|
*/
|
|
149
149
|
getClaimPartner(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerResponseClass>;
|
|
150
150
|
/**
|
|
151
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
151
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
152
152
|
* @summary List claim partners
|
|
153
153
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
154
154
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -289,7 +289,7 @@ export interface ClaimPartnersApiListClaimPartnersRequest {
|
|
|
289
289
|
*/
|
|
290
290
|
export declare class ClaimPartnersApi extends BaseAPI {
|
|
291
291
|
/**
|
|
292
|
-
* This will create a claim partner.
|
|
292
|
+
* This will create a claim partner.
|
|
293
293
|
* @summary Create the claim partner
|
|
294
294
|
* @param {ClaimPartnersApiCreateClaimPartnerRequest} requestParameters Request parameters.
|
|
295
295
|
* @param {*} [options] Override http request option.
|
|
@@ -298,7 +298,7 @@ export declare class ClaimPartnersApi extends BaseAPI {
|
|
|
298
298
|
*/
|
|
299
299
|
createClaimPartner(requestParameters: ClaimPartnersApiCreateClaimPartnerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimPartnerResponseClass, any>>;
|
|
300
300
|
/**
|
|
301
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
301
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
302
302
|
* @summary Delete the claim partner
|
|
303
303
|
* @param {ClaimPartnersApiDeleteClaimPartnerRequest} requestParameters Request parameters.
|
|
304
304
|
* @param {*} [options] Override http request option.
|
|
@@ -307,7 +307,7 @@ export declare class ClaimPartnersApi extends BaseAPI {
|
|
|
307
307
|
*/
|
|
308
308
|
deleteClaimPartner(requestParameters: ClaimPartnersApiDeleteClaimPartnerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
309
309
|
/**
|
|
310
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
|
|
310
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
|
|
311
311
|
* @summary Retrieve the claim partner
|
|
312
312
|
* @param {ClaimPartnersApiGetClaimPartnerRequest} requestParameters Request parameters.
|
|
313
313
|
* @param {*} [options] Override http request option.
|
|
@@ -316,7 +316,7 @@ export declare class ClaimPartnersApi extends BaseAPI {
|
|
|
316
316
|
*/
|
|
317
317
|
getClaimPartner(requestParameters: ClaimPartnersApiGetClaimPartnerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimPartnerResponseClass, any>>;
|
|
318
318
|
/**
|
|
319
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
319
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
320
320
|
* @summary List claim partners
|
|
321
321
|
* @param {ClaimPartnersApiListClaimPartnersRequest} requestParameters Request parameters.
|
|
322
322
|
* @param {*} [options] Override http request option.
|