@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20240120.1 → 1.20240302.1

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 (42) hide show
  1. package/.openapi-generator/FILES +30 -0
  2. package/api/adv-workflow-api.ts +456 -0
  3. package/api/benefits-api.ts +122 -0
  4. package/api/client-config-api.ts +869 -0
  5. package/api/commission-rates-api.ts +8 -18
  6. package/api/group-ucpercent-criterias-api.ts +677 -0
  7. package/api/process-automation-api.ts +365 -0
  8. package/api/support-api.ts +532 -0
  9. package/api/user-api.ts +0 -96
  10. package/api/vbareports-api.ts +155 -0
  11. package/api.ts +6 -0
  12. package/models/auth.ts +29 -5
  13. package/models/callback-dto.ts +43 -0
  14. package/models/company-data.ts +14 -2
  15. package/models/database-connection.ts +36 -0
  16. package/models/email-report-dto.ts +103 -0
  17. package/models/fax-report-dto.ts +85 -0
  18. package/models/group-ucpercent-criteria-list-vbaresponse.ts +45 -0
  19. package/models/group-ucpercent-criteria-vbaresponse.ts +45 -0
  20. package/models/group-ucpercent-criteria.ts +84 -0
  21. package/models/groups.ts +6 -0
  22. package/models/index.ts +24 -0
  23. package/models/json-node-options.ts +30 -0
  24. package/models/json-node.ts +43 -0
  25. package/models/json-value.ts +44 -0
  26. package/models/report-series-step.ts +6 -0
  27. package/models/smsdto.ts +67 -0
  28. package/models/ssoconfig-list-vbaresponse.ts +45 -0
  29. package/models/ssoconfig-vbaresponse.ts +45 -0
  30. package/models/ssoconfig.ts +84 -0
  31. package/models/users.ts +13 -1
  32. package/models/vbaclient-environment-list-vbaresponse.ts +45 -0
  33. package/models/vbaclient-environment.ts +37 -0
  34. package/models/vbaclient-list-vbaresponse.ts +45 -0
  35. package/models/vbaclient-vbaresponse.ts +45 -0
  36. package/models/vbaclient.ts +55 -0
  37. package/models/vbareport-list-vbaresponse.ts +45 -0
  38. package/models/vbareport.ts +60 -0
  39. package/models/vbassologin-config.ts +42 -0
  40. package/models/workflow-claim.ts +60 -0
  41. package/models/workflow-processing.ts +49 -0
  42. package/package.json +1 -1
@@ -0,0 +1,155 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * VBASoftware
5
+ * APIs for VBASoftware
6
+ *
7
+ * The version of the OpenAPI document: v1
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
17
+ import { Configuration } from '../configuration';
18
+ // Some imports not used depending on template conditions
19
+ // @ts-ignore
20
+ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
21
+ // @ts-ignore
22
+ import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
23
+ // @ts-ignore
24
+ import { VBAReportListVBAResponse } from '../models';
25
+ /**
26
+ * VBAReportsApi - axios parameter creator
27
+ * @export
28
+ */
29
+ export const VBAReportsApiAxiosParamCreator = function (configuration?: Configuration) {
30
+ return {
31
+ /**
32
+ * Lists all VBA Report
33
+ * @summary List VBA Report
34
+ * @param {string} vbasoftwareDatabase Target database
35
+ * @param {*} [options] Override http request option.
36
+ * @throws {RequiredError}
37
+ */
38
+ listVBAReports: async (vbasoftwareDatabase: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
39
+ // verify required parameter 'vbasoftwareDatabase' is not null or undefined
40
+ assertParamExists('listVBAReports', 'vbasoftwareDatabase', vbasoftwareDatabase)
41
+ const localVarPath = `/reports`;
42
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
43
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
44
+ let baseOptions;
45
+ if (configuration) {
46
+ baseOptions = configuration.baseOptions;
47
+ }
48
+
49
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
50
+ const localVarHeaderParameter = {} as any;
51
+ const localVarQueryParameter = {} as any;
52
+
53
+ // authentication apiKeyAuth required
54
+ await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
55
+
56
+ // authentication bearerAuth required
57
+ // http bearer authentication required
58
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
59
+
60
+ if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
61
+ localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
62
+ }
63
+
64
+
65
+
66
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
67
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
68
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
69
+
70
+ return {
71
+ url: toPathString(localVarUrlObj),
72
+ options: localVarRequestOptions,
73
+ };
74
+ },
75
+ }
76
+ };
77
+
78
+ /**
79
+ * VBAReportsApi - functional programming interface
80
+ * @export
81
+ */
82
+ export const VBAReportsApiFp = function(configuration?: Configuration) {
83
+ const localVarAxiosParamCreator = VBAReportsApiAxiosParamCreator(configuration)
84
+ return {
85
+ /**
86
+ * Lists all VBA Report
87
+ * @summary List VBA Report
88
+ * @param {string} vbasoftwareDatabase Target database
89
+ * @param {*} [options] Override http request option.
90
+ * @throws {RequiredError}
91
+ */
92
+ async listVBAReports(vbasoftwareDatabase: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAReportListVBAResponse>> {
93
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listVBAReports(vbasoftwareDatabase, options);
94
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
95
+ },
96
+ }
97
+ };
98
+
99
+ /**
100
+ * VBAReportsApi - factory interface
101
+ * @export
102
+ */
103
+ export const VBAReportsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
104
+ const localVarFp = VBAReportsApiFp(configuration)
105
+ return {
106
+ /**
107
+ * Lists all VBA Report
108
+ * @summary List VBA Report
109
+ * @param {string} vbasoftwareDatabase Target database
110
+ * @param {*} [options] Override http request option.
111
+ * @throws {RequiredError}
112
+ */
113
+ listVBAReports(vbasoftwareDatabase: string, options?: any): AxiosPromise<VBAReportListVBAResponse> {
114
+ return localVarFp.listVBAReports(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
115
+ },
116
+ };
117
+ };
118
+
119
+ /**
120
+ * VBAReportsApi - interface
121
+ * @export
122
+ * @interface VBAReportsApi
123
+ */
124
+ export interface VBAReportsApiInterface {
125
+ /**
126
+ * Lists all VBA Report
127
+ * @summary List VBA Report
128
+ * @param {string} vbasoftwareDatabase Target database
129
+ * @param {*} [options] Override http request option.
130
+ * @throws {RequiredError}
131
+ * @memberof VBAReportsApiInterface
132
+ */
133
+ listVBAReports(vbasoftwareDatabase: string, options?: AxiosRequestConfig): AxiosPromise<VBAReportListVBAResponse>;
134
+
135
+ }
136
+
137
+ /**
138
+ * VBAReportsApi - object-oriented interface
139
+ * @export
140
+ * @class VBAReportsApi
141
+ * @extends {BaseAPI}
142
+ */
143
+ export class VBAReportsApi extends BaseAPI implements VBAReportsApiInterface {
144
+ /**
145
+ * Lists all VBA Report
146
+ * @summary List VBA Report
147
+ * @param {string} vbasoftwareDatabase Target database
148
+ * @param {*} [options] Override http request option.
149
+ * @throws {RequiredError}
150
+ * @memberof VBAReportsApi
151
+ */
152
+ public listVBAReports(vbasoftwareDatabase: string, options?: AxiosRequestConfig) {
153
+ return VBAReportsApiFp(this.configuration).listVBAReports(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
154
+ }
155
+ }
package/api.ts CHANGED
@@ -30,6 +30,7 @@ export * from './api/adv-group-contracts-api';
30
30
  export * from './api/adv-group-divisions-api';
31
31
  export * from './api/adv-groups-api';
32
32
  export * from './api/adv-reinsurance-api';
33
+ export * from './api/adv-workflow-api';
33
34
  export * from './api/age-settings-api';
34
35
  export * from './api/agriculture-tax-returns-api';
35
36
  export * from './api/amount-details-api';
@@ -221,6 +222,7 @@ export * from './api/claim-types-api';
221
222
  export * from './api/claim-value-codes-api';
222
223
  export * from './api/claims-api';
223
224
  export * from './api/classes-api';
225
+ export * from './api/client-config-api';
224
226
  export * from './api/college-types-api';
225
227
  export * from './api/colleges-api';
226
228
  export * from './api/commission-activity-api';
@@ -443,6 +445,7 @@ export * from './api/group-subscriber-reimbursements-api';
443
445
  export * from './api/group-tax-day-limit-types-api';
444
446
  export * from './api/group-term-rules-api';
445
447
  export * from './api/group-ucpercent-claim-types-api';
448
+ export * from './api/group-ucpercent-criterias-api';
446
449
  export * from './api/group-ucpercent-settings-api';
447
450
  export * from './api/group-vbaplan-types-api';
448
451
  export * from './api/group-volumes-api';
@@ -627,6 +630,7 @@ export * from './api/procedure-code-qualifiers-api';
627
630
  export * from './api/procedure-code-sets-api';
628
631
  export * from './api/procedure-codes-api';
629
632
  export * from './api/procedure-groups-api';
633
+ export * from './api/process-automation-api';
630
634
  export * from './api/process-logging-api';
631
635
  export * from './api/process-parameters-api';
632
636
  export * from './api/processes-api';
@@ -767,6 +771,7 @@ export * from './api/subscriber-prior-accumulators-api';
767
771
  export * from './api/subscriber-waive-premiums-api';
768
772
  export * from './api/subscribers-api';
769
773
  export * from './api/suffix-api';
774
+ export * from './api/support-api';
770
775
  export * from './api/suspense-claims-api';
771
776
  export * from './api/suspense-criterias-api';
772
777
  export * from './api/suspense-types-api';
@@ -806,6 +811,7 @@ export * from './api/vbainterface-types-api';
806
811
  export * from './api/vbainterface-vendors-api';
807
812
  export * from './api/vbainterfaces-api';
808
813
  export * from './api/vbaplan-types-api';
814
+ export * from './api/vbareports-api';
809
815
  export * from './api/vbassist-api';
810
816
  export * from './api/volume-types-api';
811
817
  export * from './api/waiting-period-types-api';
package/models/auth.ts CHANGED
@@ -189,7 +189,7 @@ export interface Auth {
189
189
  */
190
190
  'cityCode_ID'?: string | null;
191
191
  /**
192
- * Field no longer used. This is repalced by the Status field.
192
+ * Field no longer used. This is repalced by the Status field. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
193
193
  * @type {boolean}
194
194
  * @memberof Auth
195
195
  */
@@ -230,6 +230,18 @@ export interface Auth {
230
230
  * @memberof Auth
231
231
  */
232
232
  'discharge_Date'?: string | null;
233
+ /**
234
+ * Date when the record was first added to the system.
235
+ * @type {string}
236
+ * @memberof Auth
237
+ */
238
+ 'entry_Date'?: string;
239
+ /**
240
+ * User that first added the record to the system.
241
+ * @type {string}
242
+ * @memberof Auth
243
+ */
244
+ 'entry_User'?: string | null;
233
245
  /**
234
246
  * Unique identifier assigned to the Provider associated with the Auth. This field can be populated by right-clicking and selecting \'Lookup\' from the context menu.
235
247
  * @type {string}
@@ -267,7 +279,7 @@ export interface Auth {
267
279
  */
268
280
  'narrative'?: string | null;
269
281
  /**
270
- * Indicates that the associated authorization is a new authorization or an extension of the original authorization.
282
+ * Indicates that the associated authorization is a new authorization or an extension of the original authorization. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
271
283
  * @type {boolean}
272
284
  * @memberof Auth
273
285
  */
@@ -321,7 +333,7 @@ export interface Auth {
321
333
  */
322
334
  'previous_Auth'?: string | null;
323
335
  /**
324
- * Check this box to indicate that previous treatment had been administered.
336
+ * Check this box to indicate that previous treatment had been administered. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
325
337
  * @type {boolean}
326
338
  * @memberof Auth
327
339
  */
@@ -429,7 +441,7 @@ export interface Auth {
429
441
  */
430
442
  'subscriber_ID'?: string | null;
431
443
  /**
432
- * Indicates if the Treatment Plan was downloaded from the application.
444
+ * Indicates if the Treatment Plan was downloaded from the application. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
433
445
  * @type {boolean}
434
446
  * @memberof Auth
435
447
  */
@@ -525,7 +537,19 @@ export interface Auth {
525
537
  */
526
538
  'units_Requested'?: number | null;
527
539
  /**
528
- * Check this box to indicate that the authorization request is urgent.
540
+ * Date when the record was last updated in the system.
541
+ * @type {string}
542
+ * @memberof Auth
543
+ */
544
+ 'update_Date'?: string;
545
+ /**
546
+ * User that last updated the record in the system.
547
+ * @type {string}
548
+ * @memberof Auth
549
+ */
550
+ 'update_User'?: string | null;
551
+ /**
552
+ * Check this box to indicate that the authorization request is urgent. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
529
553
  * @type {boolean}
530
554
  * @memberof Auth
531
555
  */
@@ -0,0 +1,43 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * VBASoftware
5
+ * APIs for VBASoftware
6
+ *
7
+ * The version of the OpenAPI document: v1
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { JsonValue } from './json-value';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface CallbackDTO
22
+ */
23
+ export interface CallbackDTO {
24
+ /**
25
+ * The HTTP Verb (eg: GET, PUT, POST, DELETE)
26
+ * @type {string}
27
+ * @memberof CallbackDTO
28
+ */
29
+ 'verb'?: string | null;
30
+ /**
31
+ * The fully-qualified URL to call using the Verb
32
+ * @type {string}
33
+ * @memberof CallbackDTO
34
+ */
35
+ 'url'?: string | null;
36
+ /**
37
+ * The serialized payload to send to the URL using the Verb and Headers
38
+ * @type {{ [key: string]: JsonValue; }}
39
+ * @memberof CallbackDTO
40
+ */
41
+ 'payload'?: { [key: string]: JsonValue; } | null;
42
+ }
43
+
@@ -213,17 +213,29 @@ export interface CompanyData {
213
213
  */
214
214
  'auto_Term_Plan_On_Gateway_Request': boolean;
215
215
  /**
216
- * The domain name for the VBAReports server, e.g., https://vbareports.vbasoftware.com/reporting/site/
216
+ *
217
217
  * @type {string}
218
218
  * @memberof CompanyData
219
219
  */
220
220
  'bR_Domain_Name'?: string | null;
221
221
  /**
222
- * The name of the client\'s VBAReports site, e.g., VBA. Example of BR_Domain_Name + BR_Site_Name: https://vbareports.vbasoftware.com/reporting/site/VBA
222
+ *
223
223
  * @type {string}
224
224
  * @memberof CompanyData
225
225
  */
226
226
  'bR_Site_Name'?: string | null;
227
+ /**
228
+ *
229
+ * @type {string}
230
+ * @memberof CompanyData
231
+ */
232
+ 'bR_Site_Secret'?: string | null;
233
+ /**
234
+ *
235
+ * @type {string}
236
+ * @memberof CompanyData
237
+ */
238
+ 'bR_Site_User'?: string | null;
227
239
  /**
228
240
  * Whether or not BaseLoad is turned on
229
241
  * @type {boolean}
@@ -0,0 +1,36 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * VBASoftware
5
+ * APIs for VBASoftware
6
+ *
7
+ * The version of the OpenAPI document: v1
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface DatabaseConnection
21
+ */
22
+ export interface DatabaseConnection {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof DatabaseConnection
27
+ */
28
+ 'databaseName'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof DatabaseConnection
33
+ */
34
+ 'connectionString'?: string | null;
35
+ }
36
+
@@ -0,0 +1,103 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * VBASoftware
5
+ * APIs for VBASoftware
6
+ *
7
+ * The version of the OpenAPI document: v1
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { CallbackDTO } from './callback-dto';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface EmailReportDTO
22
+ */
23
+ export interface EmailReportDTO {
24
+ /**
25
+ * Activity ID that spawned this
26
+ * @type {string}
27
+ * @memberof EmailReportDTO
28
+ */
29
+ 'parentActivityId'?: string | null;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof EmailReportDTO
34
+ */
35
+ 'when'?: string | null;
36
+ /**
37
+ *
38
+ * @type {CallbackDTO}
39
+ * @memberof EmailReportDTO
40
+ */
41
+ 'onSuccess'?: CallbackDTO;
42
+ /**
43
+ *
44
+ * @type {CallbackDTO}
45
+ * @memberof EmailReportDTO
46
+ */
47
+ 'onFailure'?: CallbackDTO;
48
+ /**
49
+ * ID of the Report
50
+ * @type {string}
51
+ * @memberof EmailReportDTO
52
+ */
53
+ 'reportId'?: string | null;
54
+ /**
55
+ * Export Type. Valid values are: Excel, Html, Pdf, Word, PPT, CSV
56
+ * @type {string}
57
+ * @memberof EmailReportDTO
58
+ */
59
+ 'exportType'?: string | null;
60
+ /**
61
+ * Client specific Site ID within the report server. This is typically their Client ID, but may be different based on client needs.
62
+ * @type {string}
63
+ * @memberof EmailReportDTO
64
+ */
65
+ 'siteId'?: string | null;
66
+ /**
67
+ * Filename of the report.
68
+ * @type {string}
69
+ * @memberof EmailReportDTO
70
+ */
71
+ 'filename'?: string | null;
72
+ /**
73
+ * An object of report parameters Required if a report requires them.
74
+ * @type {{ [key: string]: string; }}
75
+ * @memberof EmailReportDTO
76
+ */
77
+ 'reportParameters'?: { [key: string]: string; } | null;
78
+ /**
79
+ * The sender of the email containing the report. This should be a valid email address.
80
+ * @type {string}
81
+ * @memberof EmailReportDTO
82
+ */
83
+ 'from'?: string | null;
84
+ /**
85
+ * All recipients of the email containing the report. Each entry should be a valid email address.
86
+ * @type {Array<string>}
87
+ * @memberof EmailReportDTO
88
+ */
89
+ 'recipients'?: Array<string> | null;
90
+ /**
91
+ * Subject of the email for the report.
92
+ * @type {string}
93
+ * @memberof EmailReportDTO
94
+ */
95
+ 'subject'?: string | null;
96
+ /**
97
+ * Body content of the email for the report.
98
+ * @type {string}
99
+ * @memberof EmailReportDTO
100
+ */
101
+ 'body'?: string | null;
102
+ }
103
+
@@ -0,0 +1,85 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * VBASoftware
5
+ * APIs for VBASoftware
6
+ *
7
+ * The version of the OpenAPI document: v1
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { CallbackDTO } from './callback-dto';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface FaxReportDTO
22
+ */
23
+ export interface FaxReportDTO {
24
+ /**
25
+ * Activity ID that spawned this
26
+ * @type {string}
27
+ * @memberof FaxReportDTO
28
+ */
29
+ 'parentActivityId'?: string | null;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof FaxReportDTO
34
+ */
35
+ 'when'?: string | null;
36
+ /**
37
+ *
38
+ * @type {CallbackDTO}
39
+ * @memberof FaxReportDTO
40
+ */
41
+ 'onSuccess'?: CallbackDTO;
42
+ /**
43
+ *
44
+ * @type {CallbackDTO}
45
+ * @memberof FaxReportDTO
46
+ */
47
+ 'onFailure'?: CallbackDTO;
48
+ /**
49
+ * ID of the Report
50
+ * @type {string}
51
+ * @memberof FaxReportDTO
52
+ */
53
+ 'reportId'?: string | null;
54
+ /**
55
+ * Export Type. Valid values are: Excel, Html, Pdf, Word, PPT, CSV
56
+ * @type {string}
57
+ * @memberof FaxReportDTO
58
+ */
59
+ 'exportType'?: string | null;
60
+ /**
61
+ * Client specific Site ID within the report server. This is typically their Client ID, but may be different based on client needs.
62
+ * @type {string}
63
+ * @memberof FaxReportDTO
64
+ */
65
+ 'siteId'?: string | null;
66
+ /**
67
+ * Filename of the report.
68
+ * @type {string}
69
+ * @memberof FaxReportDTO
70
+ */
71
+ 'filename'?: string | null;
72
+ /**
73
+ * A json object of report parameters Required if a report requires them.
74
+ * @type {{ [key: string]: string; }}
75
+ * @memberof FaxReportDTO
76
+ */
77
+ 'reportParameters'?: { [key: string]: string; } | null;
78
+ /**
79
+ * Fax destination
80
+ * @type {string}
81
+ * @memberof FaxReportDTO
82
+ */
83
+ 'faxNumber'?: string | null;
84
+ }
85
+
@@ -0,0 +1,45 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * VBASoftware
5
+ * APIs for VBASoftware
6
+ *
7
+ * The version of the OpenAPI document: v1
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { Debug } from './debug';
17
+ import { GroupUCPercentCriteria } from './group-ucpercent-criteria';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface GroupUCPercentCriteriaListVBAResponse
24
+ */
25
+ export interface GroupUCPercentCriteriaListVBAResponse {
26
+ /**
27
+ *
28
+ * @type {Array<GroupUCPercentCriteria>}
29
+ * @memberof GroupUCPercentCriteriaListVBAResponse
30
+ */
31
+ 'data'?: Array<GroupUCPercentCriteria> | null;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof GroupUCPercentCriteriaListVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof GroupUCPercentCriteriaListVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+
@@ -0,0 +1,45 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * VBASoftware
5
+ * APIs for VBASoftware
6
+ *
7
+ * The version of the OpenAPI document: v1
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { Debug } from './debug';
17
+ import { GroupUCPercentCriteria } from './group-ucpercent-criteria';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface GroupUCPercentCriteriaVBAResponse
24
+ */
25
+ export interface GroupUCPercentCriteriaVBAResponse {
26
+ /**
27
+ *
28
+ * @type {GroupUCPercentCriteria}
29
+ * @memberof GroupUCPercentCriteriaVBAResponse
30
+ */
31
+ 'data'?: GroupUCPercentCriteria;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof GroupUCPercentCriteriaVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof GroupUCPercentCriteriaVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+