@emilgroup/commission-sdk-node 1.0.0-beta.3 → 1.0.0-beta.4

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 (33) hide show
  1. package/.openapi-generator/FILES +8 -0
  2. package/README.md +2 -2
  3. package/api/commission-recipients-api.ts +642 -0
  4. package/api.ts +2 -0
  5. package/dist/api/commission-recipients-api.d.ts +357 -0
  6. package/dist/api/commission-recipients-api.js +624 -0
  7. package/dist/api.d.ts +1 -0
  8. package/dist/api.js +1 -0
  9. package/dist/models/commission-recipient-class.d.ts +90 -0
  10. package/dist/models/commission-recipient-class.js +20 -0
  11. package/dist/models/create-commission-recipient-request-dto.d.ts +36 -0
  12. package/dist/models/create-commission-recipient-request-dto.js +15 -0
  13. package/dist/models/create-commission-recipient-response-class.d.ts +25 -0
  14. package/dist/models/create-commission-recipient-response-class.js +15 -0
  15. package/dist/models/get-commission-recipient-response-class.d.ts +25 -0
  16. package/dist/models/get-commission-recipient-response-class.js +15 -0
  17. package/dist/models/index.d.ts +7 -0
  18. package/dist/models/index.js +7 -0
  19. package/dist/models/list-commission-recipients-response-class.d.ts +43 -0
  20. package/dist/models/list-commission-recipients-response-class.js +15 -0
  21. package/dist/models/update-commission-recipient-request-dto.d.ts +42 -0
  22. package/dist/models/update-commission-recipient-request-dto.js +15 -0
  23. package/dist/models/update-commission-recipient-response-class.d.ts +25 -0
  24. package/dist/models/update-commission-recipient-response-class.js +15 -0
  25. package/models/commission-recipient-class.ts +99 -0
  26. package/models/create-commission-recipient-request-dto.ts +42 -0
  27. package/models/create-commission-recipient-response-class.ts +31 -0
  28. package/models/get-commission-recipient-response-class.ts +31 -0
  29. package/models/index.ts +7 -0
  30. package/models/list-commission-recipients-response-class.ts +49 -0
  31. package/models/update-commission-recipient-request-dto.ts +48 -0
  32. package/models/update-commission-recipient-response-class.ts +31 -0
  33. package/package.json +1 -1
@@ -0,0 +1,90 @@
1
+ /**
2
+ * EMIL CommissionService
3
+ * The EMIL CommissionService 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 { CommissionAgreementVersionClass } from './commission-agreement-version-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CommissionRecipientClass
17
+ */
18
+ export interface CommissionRecipientClass {
19
+ /**
20
+ * Unique identifier for the commission recipient
21
+ * @type {number}
22
+ * @memberof CommissionRecipientClass
23
+ */
24
+ 'id': number;
25
+ /**
26
+ * The commission agreement version associated with this commission recipient
27
+ * @type {CommissionAgreementVersionClass}
28
+ * @memberof CommissionRecipientClass
29
+ */
30
+ 'version'?: CommissionAgreementVersionClass;
31
+ /**
32
+ * The commission agreement version code associated with this commission recipient
33
+ * @type {string}
34
+ * @memberof CommissionRecipientClass
35
+ */
36
+ 'commissionAgreementVersionCode'?: string;
37
+ /**
38
+ * Unique code identifier for the commission recipient, auto-generated on creation
39
+ * @type {string}
40
+ * @memberof CommissionRecipientClass
41
+ */
42
+ 'code': string;
43
+ /**
44
+ * Human-readable display name for the commission recipient
45
+ * @type {string}
46
+ * @memberof CommissionRecipientClass
47
+ */
48
+ 'displayName': string;
49
+ /**
50
+ * The unique code or identifier of the partner associated with this commission recipient
51
+ * @type {string}
52
+ * @memberof CommissionRecipientClass
53
+ */
54
+ 'partnerCode': string;
55
+ /**
56
+ * Status of the commission recipient
57
+ * @type {string}
58
+ * @memberof CommissionRecipientClass
59
+ */
60
+ 'status': CommissionRecipientClassStatusEnum;
61
+ /**
62
+ * Timestamp when the commission recipient was created
63
+ * @type {string}
64
+ * @memberof CommissionRecipientClass
65
+ */
66
+ 'createdAt'?: string;
67
+ /**
68
+ * Timestamp when the commission recipient was last updated
69
+ * @type {string}
70
+ * @memberof CommissionRecipientClass
71
+ */
72
+ 'updatedAt'?: string;
73
+ /**
74
+ * User identifier who created the commission recipient
75
+ * @type {string}
76
+ * @memberof CommissionRecipientClass
77
+ */
78
+ 'createdBy'?: string;
79
+ /**
80
+ * User identifier who last updated the commission recipient
81
+ * @type {string}
82
+ * @memberof CommissionRecipientClass
83
+ */
84
+ 'updatedBy'?: string;
85
+ }
86
+ export declare const CommissionRecipientClassStatusEnum: {
87
+ readonly Active: "active";
88
+ readonly Inactive: "inactive";
89
+ };
90
+ export type CommissionRecipientClassStatusEnum = typeof CommissionRecipientClassStatusEnum[keyof typeof CommissionRecipientClassStatusEnum];
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL CommissionService
6
+ * The EMIL CommissionService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.CommissionRecipientClassStatusEnum = void 0;
17
+ exports.CommissionRecipientClassStatusEnum = {
18
+ Active: 'active',
19
+ Inactive: 'inactive'
20
+ };
@@ -0,0 +1,36 @@
1
+ /**
2
+ * EMIL CommissionService
3
+ * The EMIL CommissionService 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
+ /**
13
+ *
14
+ * @export
15
+ * @interface CreateCommissionRecipientRequestDto
16
+ */
17
+ export interface CreateCommissionRecipientRequestDto {
18
+ /**
19
+ * The unique code or identifier of the commission agreement version this recipient is associated with
20
+ * @type {string}
21
+ * @memberof CreateCommissionRecipientRequestDto
22
+ */
23
+ 'commissionAgreementVersionCode': string;
24
+ /**
25
+ * Human-readable display name for the commission recipient
26
+ * @type {string}
27
+ * @memberof CreateCommissionRecipientRequestDto
28
+ */
29
+ 'displayName': string;
30
+ /**
31
+ * The unique code or identifier of the partner associated with this commission recipient
32
+ * @type {string}
33
+ * @memberof CreateCommissionRecipientRequestDto
34
+ */
35
+ 'partnerCode': string;
36
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL CommissionService
6
+ * The EMIL CommissionService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
1
+ /**
2
+ * EMIL CommissionService
3
+ * The EMIL CommissionService 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 { CommissionRecipientClass } from './commission-recipient-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CreateCommissionRecipientResponseClass
17
+ */
18
+ export interface CreateCommissionRecipientResponseClass {
19
+ /**
20
+ * The commission recipient that was created
21
+ * @type {CommissionRecipientClass}
22
+ * @memberof CreateCommissionRecipientResponseClass
23
+ */
24
+ 'recipient'?: CommissionRecipientClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL CommissionService
6
+ * The EMIL CommissionService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
1
+ /**
2
+ * EMIL CommissionService
3
+ * The EMIL CommissionService 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 { CommissionRecipientClass } from './commission-recipient-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetCommissionRecipientResponseClass
17
+ */
18
+ export interface GetCommissionRecipientResponseClass {
19
+ /**
20
+ * The commission recipient that was created
21
+ * @type {CommissionRecipientClass}
22
+ * @memberof GetCommissionRecipientResponseClass
23
+ */
24
+ 'recipient'?: CommissionRecipientClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL CommissionService
6
+ * The EMIL CommissionService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -2,22 +2,29 @@ export * from './commission-agreement-class';
2
2
  export * from './commission-agreement-version-class';
3
3
  export * from './commission-class';
4
4
  export * from './commission-item-class';
5
+ export * from './commission-recipient-class';
5
6
  export * from './create-commission-agreement-request-dto';
6
7
  export * from './create-commission-agreement-response-class';
7
8
  export * from './create-commission-agreement-version-request-dto';
8
9
  export * from './create-commission-agreement-version-response-class';
9
10
  export * from './create-commission-item-request-dto';
11
+ export * from './create-commission-recipient-request-dto';
12
+ export * from './create-commission-recipient-response-class';
10
13
  export * from './create-commission-request-dto';
11
14
  export * from './create-commission-response-class';
12
15
  export * from './get-commission-agreement-response-class';
13
16
  export * from './get-commission-agreement-version-response-class';
17
+ export * from './get-commission-recipient-response-class';
14
18
  export * from './get-commission-response-class';
15
19
  export * from './inline-response200';
16
20
  export * from './inline-response503';
17
21
  export * from './list-commission-agreement-versions-response-class';
18
22
  export * from './list-commission-agreements-response-class';
23
+ export * from './list-commission-recipients-response-class';
19
24
  export * from './list-commissions-response-class';
20
25
  export * from './update-commission-agreement-request-dto';
21
26
  export * from './update-commission-agreement-response-class';
27
+ export * from './update-commission-recipient-request-dto';
28
+ export * from './update-commission-recipient-response-class';
22
29
  export * from './update-commission-request-dto';
23
30
  export * from './update-commission-response-class';
@@ -18,22 +18,29 @@ __exportStar(require("./commission-agreement-class"), exports);
18
18
  __exportStar(require("./commission-agreement-version-class"), exports);
19
19
  __exportStar(require("./commission-class"), exports);
20
20
  __exportStar(require("./commission-item-class"), exports);
21
+ __exportStar(require("./commission-recipient-class"), exports);
21
22
  __exportStar(require("./create-commission-agreement-request-dto"), exports);
22
23
  __exportStar(require("./create-commission-agreement-response-class"), exports);
23
24
  __exportStar(require("./create-commission-agreement-version-request-dto"), exports);
24
25
  __exportStar(require("./create-commission-agreement-version-response-class"), exports);
25
26
  __exportStar(require("./create-commission-item-request-dto"), exports);
27
+ __exportStar(require("./create-commission-recipient-request-dto"), exports);
28
+ __exportStar(require("./create-commission-recipient-response-class"), exports);
26
29
  __exportStar(require("./create-commission-request-dto"), exports);
27
30
  __exportStar(require("./create-commission-response-class"), exports);
28
31
  __exportStar(require("./get-commission-agreement-response-class"), exports);
29
32
  __exportStar(require("./get-commission-agreement-version-response-class"), exports);
33
+ __exportStar(require("./get-commission-recipient-response-class"), exports);
30
34
  __exportStar(require("./get-commission-response-class"), exports);
31
35
  __exportStar(require("./inline-response200"), exports);
32
36
  __exportStar(require("./inline-response503"), exports);
33
37
  __exportStar(require("./list-commission-agreement-versions-response-class"), exports);
34
38
  __exportStar(require("./list-commission-agreements-response-class"), exports);
39
+ __exportStar(require("./list-commission-recipients-response-class"), exports);
35
40
  __exportStar(require("./list-commissions-response-class"), exports);
36
41
  __exportStar(require("./update-commission-agreement-request-dto"), exports);
37
42
  __exportStar(require("./update-commission-agreement-response-class"), exports);
43
+ __exportStar(require("./update-commission-recipient-request-dto"), exports);
44
+ __exportStar(require("./update-commission-recipient-response-class"), exports);
38
45
  __exportStar(require("./update-commission-request-dto"), exports);
39
46
  __exportStar(require("./update-commission-response-class"), exports);
@@ -0,0 +1,43 @@
1
+ /**
2
+ * EMIL CommissionService
3
+ * The EMIL CommissionService 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 { CommissionRecipientClass } from './commission-recipient-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListCommissionRecipientsResponseClass
17
+ */
18
+ export interface ListCommissionRecipientsResponseClass {
19
+ /**
20
+ * An array of commission recipients that were retrieved
21
+ * @type {Array<CommissionRecipientClass>}
22
+ * @memberof ListCommissionRecipientsResponseClass
23
+ */
24
+ 'items': Array<CommissionRecipientClass>;
25
+ /**
26
+ * nextPageToken
27
+ * @type {string}
28
+ * @memberof ListCommissionRecipientsResponseClass
29
+ */
30
+ 'nextPageToken': string;
31
+ /**
32
+ * itemsPerPage
33
+ * @type {number}
34
+ * @memberof ListCommissionRecipientsResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * totalItems
39
+ * @type {number}
40
+ * @memberof ListCommissionRecipientsResponseClass
41
+ */
42
+ 'totalItems': number;
43
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL CommissionService
6
+ * The EMIL CommissionService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,42 @@
1
+ /**
2
+ * EMIL CommissionService
3
+ * The EMIL CommissionService 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
+ /**
13
+ *
14
+ * @export
15
+ * @interface UpdateCommissionRecipientRequestDto
16
+ */
17
+ export interface UpdateCommissionRecipientRequestDto {
18
+ /**
19
+ * Unique code identifier for the commission recipient to update
20
+ * @type {string}
21
+ * @memberof UpdateCommissionRecipientRequestDto
22
+ */
23
+ 'code': string;
24
+ /**
25
+ * Updated human-readable display name for the commission recipient
26
+ * @type {string}
27
+ * @memberof UpdateCommissionRecipientRequestDto
28
+ */
29
+ 'displayName': string;
30
+ /**
31
+ * Updated unique code or identifier of the partner associated with this commission recipient
32
+ * @type {string}
33
+ * @memberof UpdateCommissionRecipientRequestDto
34
+ */
35
+ 'partnerCode': string;
36
+ /**
37
+ * Updated status of the commission recipient (e.g., pending, settled, active, inactive)
38
+ * @type {string}
39
+ * @memberof UpdateCommissionRecipientRequestDto
40
+ */
41
+ 'status': string;
42
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL CommissionService
6
+ * The EMIL CommissionService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
1
+ /**
2
+ * EMIL CommissionService
3
+ * The EMIL CommissionService 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 { CommissionRecipientClass } from './commission-recipient-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdateCommissionRecipientResponseClass
17
+ */
18
+ export interface UpdateCommissionRecipientResponseClass {
19
+ /**
20
+ * The commission recipient that was updated
21
+ * @type {CommissionRecipientClass}
22
+ * @memberof UpdateCommissionRecipientResponseClass
23
+ */
24
+ 'recipient'?: CommissionRecipientClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL CommissionService
6
+ * The EMIL CommissionService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,99 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL CommissionService
5
+ * The EMIL CommissionService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
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 { CommissionAgreementVersionClass } from './commission-agreement-version-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface CommissionRecipientClass
22
+ */
23
+ export interface CommissionRecipientClass {
24
+ /**
25
+ * Unique identifier for the commission recipient
26
+ * @type {number}
27
+ * @memberof CommissionRecipientClass
28
+ */
29
+ 'id': number;
30
+ /**
31
+ * The commission agreement version associated with this commission recipient
32
+ * @type {CommissionAgreementVersionClass}
33
+ * @memberof CommissionRecipientClass
34
+ */
35
+ 'version'?: CommissionAgreementVersionClass;
36
+ /**
37
+ * The commission agreement version code associated with this commission recipient
38
+ * @type {string}
39
+ * @memberof CommissionRecipientClass
40
+ */
41
+ 'commissionAgreementVersionCode'?: string;
42
+ /**
43
+ * Unique code identifier for the commission recipient, auto-generated on creation
44
+ * @type {string}
45
+ * @memberof CommissionRecipientClass
46
+ */
47
+ 'code': string;
48
+ /**
49
+ * Human-readable display name for the commission recipient
50
+ * @type {string}
51
+ * @memberof CommissionRecipientClass
52
+ */
53
+ 'displayName': string;
54
+ /**
55
+ * The unique code or identifier of the partner associated with this commission recipient
56
+ * @type {string}
57
+ * @memberof CommissionRecipientClass
58
+ */
59
+ 'partnerCode': string;
60
+ /**
61
+ * Status of the commission recipient
62
+ * @type {string}
63
+ * @memberof CommissionRecipientClass
64
+ */
65
+ 'status': CommissionRecipientClassStatusEnum;
66
+ /**
67
+ * Timestamp when the commission recipient was created
68
+ * @type {string}
69
+ * @memberof CommissionRecipientClass
70
+ */
71
+ 'createdAt'?: string;
72
+ /**
73
+ * Timestamp when the commission recipient was last updated
74
+ * @type {string}
75
+ * @memberof CommissionRecipientClass
76
+ */
77
+ 'updatedAt'?: string;
78
+ /**
79
+ * User identifier who created the commission recipient
80
+ * @type {string}
81
+ * @memberof CommissionRecipientClass
82
+ */
83
+ 'createdBy'?: string;
84
+ /**
85
+ * User identifier who last updated the commission recipient
86
+ * @type {string}
87
+ * @memberof CommissionRecipientClass
88
+ */
89
+ 'updatedBy'?: string;
90
+ }
91
+
92
+ export const CommissionRecipientClassStatusEnum = {
93
+ Active: 'active',
94
+ Inactive: 'inactive'
95
+ } as const;
96
+
97
+ export type CommissionRecipientClassStatusEnum = typeof CommissionRecipientClassStatusEnum[keyof typeof CommissionRecipientClassStatusEnum];
98
+
99
+
@@ -0,0 +1,42 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL CommissionService
5
+ * The EMIL CommissionService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
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 CreateCommissionRecipientRequestDto
21
+ */
22
+ export interface CreateCommissionRecipientRequestDto {
23
+ /**
24
+ * The unique code or identifier of the commission agreement version this recipient is associated with
25
+ * @type {string}
26
+ * @memberof CreateCommissionRecipientRequestDto
27
+ */
28
+ 'commissionAgreementVersionCode': string;
29
+ /**
30
+ * Human-readable display name for the commission recipient
31
+ * @type {string}
32
+ * @memberof CreateCommissionRecipientRequestDto
33
+ */
34
+ 'displayName': string;
35
+ /**
36
+ * The unique code or identifier of the partner associated with this commission recipient
37
+ * @type {string}
38
+ * @memberof CreateCommissionRecipientRequestDto
39
+ */
40
+ 'partnerCode': string;
41
+ }
42
+
@@ -0,0 +1,31 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL CommissionService
5
+ * The EMIL CommissionService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
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 { CommissionRecipientClass } from './commission-recipient-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface CreateCommissionRecipientResponseClass
22
+ */
23
+ export interface CreateCommissionRecipientResponseClass {
24
+ /**
25
+ * The commission recipient that was created
26
+ * @type {CommissionRecipientClass}
27
+ * @memberof CreateCommissionRecipientResponseClass
28
+ */
29
+ 'recipient'?: CommissionRecipientClass;
30
+ }
31
+
@@ -0,0 +1,31 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL CommissionService
5
+ * The EMIL CommissionService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
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 { CommissionRecipientClass } from './commission-recipient-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface GetCommissionRecipientResponseClass
22
+ */
23
+ export interface GetCommissionRecipientResponseClass {
24
+ /**
25
+ * The commission recipient that was created
26
+ * @type {CommissionRecipientClass}
27
+ * @memberof GetCommissionRecipientResponseClass
28
+ */
29
+ 'recipient'?: CommissionRecipientClass;
30
+ }
31
+