@emilgroup/accounting-sdk-node 1.11.0 → 1.11.1-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (222) hide show
  1. package/.openapi-generator/FILES +15 -52
  2. package/README.md +2 -2
  3. package/api/booking-processes-api.ts +357 -0
  4. package/api/financial-accounts-api.ts +577 -0
  5. package/api/health-api.ts +7 -7
  6. package/api.ts +6 -14
  7. package/base.ts +2 -2
  8. package/common.ts +4 -4
  9. package/configuration.ts +2 -2
  10. package/dist/api/booking-processes-api.d.ts +207 -0
  11. package/dist/api/{zip-codes-api.js → booking-processes-api.js} +80 -166
  12. package/dist/api/financial-accounts-api.d.ts +327 -0
  13. package/dist/api/{vbas-api.js → financial-accounts-api.js} +156 -161
  14. package/dist/api/health-api.d.ts +6 -6
  15. package/dist/api/health-api.js +7 -7
  16. package/dist/api.d.ts +4 -8
  17. package/dist/api.js +4 -8
  18. package/dist/base.d.ts +2 -2
  19. package/dist/base.js +2 -2
  20. package/dist/common.d.ts +4 -4
  21. package/dist/common.js +2 -2
  22. package/dist/configuration.d.ts +2 -2
  23. package/dist/configuration.js +2 -2
  24. package/dist/index.d.ts +2 -2
  25. package/dist/index.js +2 -2
  26. package/dist/models/booking-entry-class.d.ts +123 -0
  27. package/dist/models/booking-entry-class.js +34 -0
  28. package/dist/models/booking-process-class.d.ts +94 -0
  29. package/dist/models/booking-process-class.js +29 -0
  30. package/dist/models/create-booking-entry-request-dto.d.ts +99 -0
  31. package/dist/models/create-booking-entry-request-dto.js +34 -0
  32. package/dist/models/create-booking-process-request-dto.d.ts +64 -0
  33. package/dist/models/create-booking-process-request-dto.js +29 -0
  34. package/dist/models/create-booking-process-response-class.d.ts +25 -0
  35. package/dist/models/{address-class.js → create-booking-process-response-class.js} +2 -2
  36. package/dist/models/create-financial-account-request-dto.d.ts +62 -0
  37. package/dist/models/{create-user-request-dto.js → create-financial-account-request-dto.js} +9 -10
  38. package/dist/models/create-financial-account-response-class.d.ts +25 -0
  39. package/dist/models/{create-user-response-class.js → create-financial-account-response-class.js} +2 -2
  40. package/dist/models/financial-account-class.d.ts +98 -0
  41. package/dist/models/{user-class.js → financial-account-class.js} +9 -6
  42. package/dist/models/financial-transaction-class.d.ts +108 -0
  43. package/dist/models/{create-mailbox-request-dto.js → financial-transaction-class.js} +2 -2
  44. package/dist/models/financial-transaction-data-dto.d.ts +71 -0
  45. package/dist/models/{create-vba-request-dto.js → financial-transaction-data-dto.js} +6 -6
  46. package/dist/models/get-financial-account-response-class.d.ts +25 -0
  47. package/dist/models/{create-vba-response-class.js → get-financial-account-response-class.js} +2 -2
  48. package/dist/models/index.d.ts +13 -46
  49. package/dist/models/index.js +13 -46
  50. package/dist/models/inline-response200.d.ts +2 -2
  51. package/dist/models/inline-response200.js +2 -2
  52. package/dist/models/inline-response503.d.ts +2 -2
  53. package/dist/models/inline-response503.js +2 -2
  54. package/dist/models/list-booking-process-response-class.d.ts +31 -0
  55. package/dist/models/list-booking-process-response-class.js +15 -0
  56. package/dist/models/list-financial-accounts-response-class.d.ts +31 -0
  57. package/dist/models/list-financial-accounts-response-class.js +15 -0
  58. package/index.ts +2 -2
  59. package/models/booking-entry-class.ts +133 -0
  60. package/models/booking-process-class.ts +104 -0
  61. package/models/create-booking-entry-request-dto.ts +109 -0
  62. package/models/create-booking-process-request-dto.ts +74 -0
  63. package/models/create-booking-process-response-class.ts +31 -0
  64. package/models/create-financial-account-request-dto.ts +71 -0
  65. package/models/create-financial-account-response-class.ts +31 -0
  66. package/models/financial-account-class.ts +107 -0
  67. package/models/financial-transaction-class.ts +114 -0
  68. package/models/financial-transaction-data-dto.ts +80 -0
  69. package/models/get-financial-account-response-class.ts +31 -0
  70. package/models/index.ts +13 -46
  71. package/models/inline-response200.ts +2 -2
  72. package/models/inline-response503.ts +2 -2
  73. package/models/list-booking-process-response-class.ts +37 -0
  74. package/models/list-financial-accounts-response-class.ts +37 -0
  75. package/package.json +1 -1
  76. package/api/mailbox-api.ts +0 -255
  77. package/api/messages-api.ts +0 -1100
  78. package/api/users-api.ts +0 -496
  79. package/api/vbas-api.ts +0 -592
  80. package/api/vbus-api.ts +0 -701
  81. package/api/zip-codes-api.ts +0 -443
  82. package/dist/api/mailbox-api.d.ts +0 -142
  83. package/dist/api/mailbox-api.js +0 -315
  84. package/dist/api/messages-api.d.ts +0 -632
  85. package/dist/api/messages-api.js +0 -916
  86. package/dist/api/users-api.d.ts +0 -275
  87. package/dist/api/users-api.js +0 -512
  88. package/dist/api/vbas-api.d.ts +0 -337
  89. package/dist/api/vbus-api.d.ts +0 -395
  90. package/dist/api/vbus-api.js +0 -647
  91. package/dist/api/zip-codes-api.d.ts +0 -253
  92. package/dist/models/address-class.d.ts +0 -48
  93. package/dist/models/create-mailbox-request-dto.d.ts +0 -36
  94. package/dist/models/create-user-request-dto.d.ts +0 -76
  95. package/dist/models/create-user-response-class.d.ts +0 -25
  96. package/dist/models/create-vba-request-dto.d.ts +0 -41
  97. package/dist/models/create-vba-response-class.d.ts +0 -24
  98. package/dist/models/create-vbu-request-dto.d.ts +0 -41
  99. package/dist/models/create-vbu-request-dto.js +0 -20
  100. package/dist/models/create-vbu-response-class.d.ts +0 -24
  101. package/dist/models/create-vbu-response-class.js +0 -15
  102. package/dist/models/create-vbuv-request-dto.d.ts +0 -41
  103. package/dist/models/create-vbuv-request-dto.js +0 -20
  104. package/dist/models/create-vbuv-response-class.d.ts +0 -24
  105. package/dist/models/create-vbuv-response-class.js +0 -15
  106. package/dist/models/get-request-message-response-class.d.ts +0 -25
  107. package/dist/models/get-request-message-response-class.js +0 -15
  108. package/dist/models/get-response-message-response-class.d.ts +0 -25
  109. package/dist/models/get-response-message-response-class.js +0 -15
  110. package/dist/models/get-user-response-class.d.ts +0 -25
  111. package/dist/models/get-user-response-class.js +0 -15
  112. package/dist/models/get-vba-response-class.d.ts +0 -25
  113. package/dist/models/get-vba-response-class.js +0 -15
  114. package/dist/models/get-vbu-response-class.d.ts +0 -25
  115. package/dist/models/get-vbu-response-class.js +0 -15
  116. package/dist/models/get-zip-code-response-class.d.ts +0 -25
  117. package/dist/models/get-zip-code-response-class.js +0 -15
  118. package/dist/models/list-all-messages-response-class.d.ts +0 -31
  119. package/dist/models/list-all-messages-response-class.js +0 -15
  120. package/dist/models/list-requests-messages-response-class.d.ts +0 -31
  121. package/dist/models/list-requests-messages-response-class.js +0 -15
  122. package/dist/models/list-responses-messages-response-class.d.ts +0 -31
  123. package/dist/models/list-responses-messages-response-class.js +0 -15
  124. package/dist/models/list-users-response-class.d.ts +0 -31
  125. package/dist/models/list-users-response-class.js +0 -15
  126. package/dist/models/list-vbas-response-class.d.ts +0 -31
  127. package/dist/models/list-vbas-response-class.js +0 -15
  128. package/dist/models/list-vbus-response-class.d.ts +0 -31
  129. package/dist/models/list-vbus-response-class.js +0 -15
  130. package/dist/models/list-zip-codes-response-class.d.ts +0 -31
  131. package/dist/models/list-zip-codes-response-class.js +0 -15
  132. package/dist/models/message-class.d.ts +0 -84
  133. package/dist/models/message-class.js +0 -15
  134. package/dist/models/request-details-class.d.ts +0 -48
  135. package/dist/models/request-details-class.js +0 -15
  136. package/dist/models/request-message-class.d.ts +0 -121
  137. package/dist/models/request-message-class.js +0 -15
  138. package/dist/models/response-details-class.d.ts +0 -42
  139. package/dist/models/response-details-class.js +0 -15
  140. package/dist/models/response-message-class.d.ts +0 -133
  141. package/dist/models/response-message-class.js +0 -15
  142. package/dist/models/store-zip-codes-request-dto.d.ts +0 -25
  143. package/dist/models/store-zip-codes-request-dto.js +0 -15
  144. package/dist/models/store-zip-codes-response-class.d.ts +0 -25
  145. package/dist/models/store-zip-codes-response-class.js +0 -15
  146. package/dist/models/update-request-message-request-dto.d.ts +0 -36
  147. package/dist/models/update-request-message-request-dto.js +0 -15
  148. package/dist/models/update-request-message-response-class.d.ts +0 -25
  149. package/dist/models/update-request-message-response-class.js +0 -15
  150. package/dist/models/update-response-message-request-dto.d.ts +0 -36
  151. package/dist/models/update-response-message-request-dto.js +0 -15
  152. package/dist/models/update-response-message-response-class.d.ts +0 -25
  153. package/dist/models/update-response-message-response-class.js +0 -15
  154. package/dist/models/update-user-request-dto.d.ts +0 -82
  155. package/dist/models/update-user-request-dto.js +0 -24
  156. package/dist/models/update-user-response-class.d.ts +0 -25
  157. package/dist/models/update-user-response-class.js +0 -15
  158. package/dist/models/update-vba-request-dto.d.ts +0 -30
  159. package/dist/models/update-vba-request-dto.js +0 -15
  160. package/dist/models/update-vbu-request-dto.d.ts +0 -30
  161. package/dist/models/update-vbu-request-dto.js +0 -15
  162. package/dist/models/update-vbu-response-class.d.ts +0 -25
  163. package/dist/models/update-vbu-response-class.js +0 -15
  164. package/dist/models/user-class.d.ts +0 -107
  165. package/dist/models/vba-class.d.ts +0 -116
  166. package/dist/models/vba-class.js +0 -15
  167. package/dist/models/vba-response-class.d.ts +0 -48
  168. package/dist/models/vba-response-class.js +0 -15
  169. package/dist/models/vbu-class.d.ts +0 -115
  170. package/dist/models/vbu-class.js +0 -15
  171. package/dist/models/vbu-response-class.d.ts +0 -48
  172. package/dist/models/vbu-response-class.js +0 -15
  173. package/dist/models/xlsx-zip-code-dto.d.ts +0 -30
  174. package/dist/models/xlsx-zip-code-dto.js +0 -15
  175. package/dist/models/zip-code-class.d.ts +0 -60
  176. package/dist/models/zip-code-class.js +0 -15
  177. package/models/address-class.ts +0 -54
  178. package/models/create-mailbox-request-dto.ts +0 -42
  179. package/models/create-user-request-dto.ts +0 -86
  180. package/models/create-user-response-class.ts +0 -31
  181. package/models/create-vba-request-dto.ts +0 -50
  182. package/models/create-vba-response-class.ts +0 -30
  183. package/models/create-vbu-request-dto.ts +0 -50
  184. package/models/create-vbu-response-class.ts +0 -30
  185. package/models/create-vbuv-request-dto.ts +0 -50
  186. package/models/create-vbuv-response-class.ts +0 -30
  187. package/models/get-request-message-response-class.ts +0 -31
  188. package/models/get-response-message-response-class.ts +0 -31
  189. package/models/get-user-response-class.ts +0 -31
  190. package/models/get-vba-response-class.ts +0 -31
  191. package/models/get-vbu-response-class.ts +0 -31
  192. package/models/get-zip-code-response-class.ts +0 -31
  193. package/models/list-all-messages-response-class.ts +0 -37
  194. package/models/list-requests-messages-response-class.ts +0 -37
  195. package/models/list-responses-messages-response-class.ts +0 -37
  196. package/models/list-users-response-class.ts +0 -37
  197. package/models/list-vbas-response-class.ts +0 -37
  198. package/models/list-vbus-response-class.ts +0 -37
  199. package/models/list-zip-codes-response-class.ts +0 -37
  200. package/models/message-class.ts +0 -90
  201. package/models/request-details-class.ts +0 -54
  202. package/models/request-message-class.ts +0 -127
  203. package/models/response-details-class.ts +0 -48
  204. package/models/response-message-class.ts +0 -139
  205. package/models/store-zip-codes-request-dto.ts +0 -31
  206. package/models/store-zip-codes-response-class.ts +0 -31
  207. package/models/update-request-message-request-dto.ts +0 -42
  208. package/models/update-request-message-response-class.ts +0 -31
  209. package/models/update-response-message-request-dto.ts +0 -42
  210. package/models/update-response-message-response-class.ts +0 -31
  211. package/models/update-user-request-dto.ts +0 -92
  212. package/models/update-user-response-class.ts +0 -31
  213. package/models/update-vba-request-dto.ts +0 -36
  214. package/models/update-vbu-request-dto.ts +0 -36
  215. package/models/update-vbu-response-class.ts +0 -31
  216. package/models/user-class.ts +0 -116
  217. package/models/vba-class.ts +0 -122
  218. package/models/vba-response-class.ts +0 -54
  219. package/models/vbu-class.ts +0 -121
  220. package/models/vbu-response-class.ts +0 -54
  221. package/models/xlsx-zip-code-dto.ts +0 -36
  222. package/models/zip-code-class.ts +0 -66
@@ -1,36 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL GdvService
5
- * The EMIL GdvService 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 UpdateVbuRequestDto
21
- */
22
- export interface UpdateVbuRequestDto {
23
- /**
24
- * Optional field to assign a VBA to a lead.
25
- * @type {string}
26
- * @memberof UpdateVbuRequestDto
27
- */
28
- 'leadCode'?: string;
29
- /**
30
- * Optional field to assign a VBA to a policy.
31
- * @type {string}
32
- * @memberof UpdateVbuRequestDto
33
- */
34
- 'policyCode'?: string;
35
- }
36
-
@@ -1,31 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL GdvService
5
- * The EMIL GdvService 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 { VbuClass } from './vbu-class';
17
-
18
- /**
19
- *
20
- * @export
21
- * @interface UpdateVbuResponseClass
22
- */
23
- export interface UpdateVbuResponseClass {
24
- /**
25
- * vbu
26
- * @type {VbuClass}
27
- * @memberof UpdateVbuResponseClass
28
- */
29
- 'vbu': VbuClass;
30
- }
31
-
@@ -1,116 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL GdvService
5
- * The EMIL GdvService 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 UserClass
21
- */
22
- export interface UserClass {
23
- /**
24
- * Internal unique identifier for the object. You should not have to use this, use code instead.
25
- * @type {number}
26
- * @memberof UserClass
27
- */
28
- 'id': number;
29
- /**
30
- * Unique identifier for the object.
31
- * @type {string}
32
- * @memberof UserClass
33
- */
34
- 'code': string;
35
- /**
36
- * User type
37
- * @type {string}
38
- * @memberof UserClass
39
- */
40
- 'type': string;
41
- /**
42
- * User insurer id
43
- * @type {string}
44
- * @memberof UserClass
45
- */
46
- 'insurerId': string;
47
- /**
48
- * User branch id
49
- * @type {string}
50
- * @memberof UserClass
51
- */
52
- 'branchId': string;
53
- /**
54
- * User communication partner id
55
- * @type {string}
56
- * @memberof UserClass
57
- */
58
- 'communicationPartnerId': string;
59
- /**
60
- * User company type
61
- * @type {string}
62
- * @memberof UserClass
63
- */
64
- 'companyType': string;
65
- /**
66
- * User agency number
67
- * @type {string}
68
- * @memberof UserClass
69
- */
70
- 'agencyNumber'?: string;
71
- /**
72
- * User internal agent number
73
- * @type {string}
74
- * @memberof UserClass
75
- */
76
- 'internalAgentNumber'?: string;
77
- /**
78
- * User mode: TEST/PRODUCTION. Use TU for test and PP for production.
79
- * @type {string}
80
- * @memberof UserClass
81
- */
82
- 'mode': UserClassModeEnum;
83
- /**
84
- * Time at which the object was created.
85
- * @type {string}
86
- * @memberof UserClass
87
- */
88
- 'createdAt': string;
89
- /**
90
- * Time at which the object was updated.
91
- * @type {string}
92
- * @memberof UserClass
93
- */
94
- 'updatedAt': string;
95
- /**
96
- * Identifier of the user who created the record.
97
- * @type {string}
98
- * @memberof UserClass
99
- */
100
- 'createdBy': string;
101
- /**
102
- * Identifier of the user who last updated the record.
103
- * @type {string}
104
- * @memberof UserClass
105
- */
106
- 'updatedBy': string;
107
- }
108
-
109
- export const UserClassModeEnum = {
110
- Tu: 'TU',
111
- Pp: 'PP'
112
- } as const;
113
-
114
- export type UserClassModeEnum = typeof UserClassModeEnum[keyof typeof UserClassModeEnum];
115
-
116
-
@@ -1,122 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL GdvService
5
- * The EMIL GdvService 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 { AddressClass } from './address-class';
17
- import { VbaResponseClass } from './vba-response-class';
18
-
19
- /**
20
- *
21
- * @export
22
- * @interface VbaClass
23
- */
24
- export interface VbaClass {
25
- /**
26
- * Internal unique identifier for the object. You should not have to use this, use code instead.
27
- * @type {number}
28
- * @memberof VbaClass
29
- */
30
- 'id': number;
31
- /**
32
- * Unique identifier for the object.
33
- * @type {string}
34
- * @memberof VbaClass
35
- */
36
- 'code': string;
37
- /**
38
- * The lead which the vba belong to
39
- * @type {string}
40
- * @memberof VbaClass
41
- */
42
- 'leadNumber': string;
43
- /**
44
- * The policy which the vba belong to
45
- * @type {string}
46
- * @memberof VbaClass
47
- */
48
- 'policyNumber': string;
49
- /**
50
- * The lead which the vba belong to
51
- * @type {string}
52
- * @memberof VbaClass
53
- */
54
- 'leadCode': string;
55
- /**
56
- * The policy which the vba belong to
57
- * @type {string}
58
- * @memberof VbaClass
59
- */
60
- 'policyCode': string;
61
- /**
62
- * Vba number.
63
- * @type {string}
64
- * @memberof VbaClass
65
- */
66
- 'vbNumber': string;
67
- /**
68
- * Vba status, it contains ERROR or OK.
69
- * @type {string}
70
- * @memberof VbaClass
71
- */
72
- 'status': string;
73
- /**
74
- * Vba valid till date.
75
- * @type {string}
76
- * @memberof VbaClass
77
- */
78
- 'expiryDate': string;
79
- /**
80
- * Customer name.
81
- * @type {string}
82
- * @memberof VbaClass
83
- */
84
- 'customerName': string;
85
- /**
86
- * Customer address
87
- * @type {Array<AddressClass>}
88
- * @memberof VbaClass
89
- */
90
- 'address': Array<AddressClass>;
91
- /**
92
- * Time at which the object was created.
93
- * @type {string}
94
- * @memberof VbaClass
95
- */
96
- 'createdAt': string;
97
- /**
98
- * Time at which the object was updated.
99
- * @type {string}
100
- * @memberof VbaClass
101
- */
102
- 'updatedAt': string;
103
- /**
104
- * Vba Responses.
105
- * @type {Array<VbaResponseClass>}
106
- * @memberof VbaClass
107
- */
108
- 'responses': Array<VbaResponseClass>;
109
- /**
110
- * Identifier of the user who created the record.
111
- * @type {string}
112
- * @memberof VbaClass
113
- */
114
- 'createdBy': string;
115
- /**
116
- * Identifier of the user who last updated the record.
117
- * @type {string}
118
- * @memberof VbaClass
119
- */
120
- 'updatedBy': string;
121
- }
122
-
@@ -1,54 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL GdvService
5
- * The EMIL GdvService 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 VbaResponseClass
21
- */
22
- export interface VbaResponseClass {
23
- /**
24
- * Internal unique identifier for the object. You should not have to use this, use code instead.
25
- * @type {number}
26
- * @memberof VbaResponseClass
27
- */
28
- 'id': number;
29
- /**
30
- * Response details
31
- * @type {object}
32
- * @memberof VbaResponseClass
33
- */
34
- 'response': object;
35
- /**
36
- * Time at which the object was created.
37
- * @type {string}
38
- * @memberof VbaResponseClass
39
- */
40
- 'createdAt': string;
41
- /**
42
- * Identifier of the user who created the record.
43
- * @type {string}
44
- * @memberof VbaResponseClass
45
- */
46
- 'createdBy': string;
47
- /**
48
- * Identifier of the user who last updated the record.
49
- * @type {string}
50
- * @memberof VbaResponseClass
51
- */
52
- 'updatedBy': string;
53
- }
54
-
@@ -1,121 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL GdvService
5
- * The EMIL GdvService 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 { VbuResponseClass } from './vbu-response-class';
17
-
18
- /**
19
- *
20
- * @export
21
- * @interface VbuClass
22
- */
23
- export interface VbuClass {
24
- /**
25
- * Internal unique identifier for the object. You should not have to use this, use code instead.
26
- * @type {number}
27
- * @memberof VbuClass
28
- */
29
- 'id': number;
30
- /**
31
- * Unique identifier for the object.
32
- * @type {string}
33
- * @memberof VbuClass
34
- */
35
- 'code': string;
36
- /**
37
- * The lead which the vbu belong to
38
- * @type {string}
39
- * @memberof VbuClass
40
- */
41
- 'leadNumber': string;
42
- /**
43
- * The policy which the vbu belong to
44
- * @type {string}
45
- * @memberof VbuClass
46
- */
47
- 'policyNumber': string;
48
- /**
49
- * The lead which the vbu belong to
50
- * @type {string}
51
- * @memberof VbuClass
52
- */
53
- 'leadCode': string;
54
- /**
55
- * The policy which the vbu belong to
56
- * @type {string}
57
- * @memberof VbuClass
58
- */
59
- 'policyCode': string;
60
- /**
61
- * Vbu status, it contains ERROR or OK.
62
- * @type {string}
63
- * @memberof VbuClass
64
- */
65
- 'status': string;
66
- /**
67
- * Vbu transition start.
68
- * @type {string}
69
- * @memberof VbuClass
70
- */
71
- 'transmissionStart': string;
72
- /**
73
- * Customer name.
74
- * @type {string}
75
- * @memberof VbuClass
76
- */
77
- 'customerName': string;
78
- /**
79
- * Car license plate
80
- * @type {string}
81
- * @memberof VbuClass
82
- */
83
- 'licensePlate': string;
84
- /**
85
- * The receipt (Quitting) received when we create a VBU request.
86
- * @type {object}
87
- * @memberof VbuClass
88
- */
89
- 'receiptJson': object;
90
- /**
91
- * Time at which the object was created.
92
- * @type {string}
93
- * @memberof VbuClass
94
- */
95
- 'createdAt': string;
96
- /**
97
- * Time at which the object was updated.
98
- * @type {string}
99
- * @memberof VbuClass
100
- */
101
- 'updatedAt': string;
102
- /**
103
- * Vba Responses.
104
- * @type {Array<VbuResponseClass>}
105
- * @memberof VbuClass
106
- */
107
- 'responses': Array<VbuResponseClass>;
108
- /**
109
- * Identifier of the user who created the record.
110
- * @type {string}
111
- * @memberof VbuClass
112
- */
113
- 'createdBy': string;
114
- /**
115
- * Identifier of the user who last updated the record.
116
- * @type {string}
117
- * @memberof VbuClass
118
- */
119
- 'updatedBy': string;
120
- }
121
-
@@ -1,54 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL GdvService
5
- * The EMIL GdvService 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 VbuResponseClass
21
- */
22
- export interface VbuResponseClass {
23
- /**
24
- * Internal unique identifier for the object. You should not have to use this, use code instead.
25
- * @type {number}
26
- * @memberof VbuResponseClass
27
- */
28
- 'id': number;
29
- /**
30
- * Response details
31
- * @type {object}
32
- * @memberof VbuResponseClass
33
- */
34
- 'response': object;
35
- /**
36
- * Time at which the object was created.
37
- * @type {string}
38
- * @memberof VbuResponseClass
39
- */
40
- 'createdAt': string;
41
- /**
42
- * Identifier of the user who created the record.
43
- * @type {string}
44
- * @memberof VbuResponseClass
45
- */
46
- 'createdBy': string;
47
- /**
48
- * Identifier of the user who last updated the record.
49
- * @type {string}
50
- * @memberof VbuResponseClass
51
- */
52
- 'updatedBy': string;
53
- }
54
-
@@ -1,36 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL GdvService
5
- * The EMIL GdvService 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 XlsxZipCodeDto
21
- */
22
- export interface XlsxZipCodeDto {
23
- /**
24
- * Zip Code
25
- * @type {string}
26
- * @memberof XlsxZipCodeDto
27
- */
28
- 'zipCode': string;
29
- /**
30
- * KGS Number
31
- * @type {string}
32
- * @memberof XlsxZipCodeDto
33
- */
34
- 'kgs': string;
35
- }
36
-
@@ -1,66 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL GdvService
5
- * The EMIL GdvService 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 ZipCodeClass
21
- */
22
- export interface ZipCodeClass {
23
- /**
24
- * Internal unique identifier for the object. You should not have to use this, use code instead.
25
- * @type {number}
26
- * @memberof ZipCodeClass
27
- */
28
- 'id': number;
29
- /**
30
- * Zip Code
31
- * @type {string}
32
- * @memberof ZipCodeClass
33
- */
34
- 'zipCode': string;
35
- /**
36
- * KGS number
37
- * @type {string}
38
- * @memberof ZipCodeClass
39
- */
40
- 'kgs': string;
41
- /**
42
- * Time at which the object was created.
43
- * @type {string}
44
- * @memberof ZipCodeClass
45
- */
46
- 'createdAt': string;
47
- /**
48
- * Time at which the object was updated.
49
- * @type {string}
50
- * @memberof ZipCodeClass
51
- */
52
- 'updatedAt': string;
53
- /**
54
- * Identifier of the user who created the record.
55
- * @type {string}
56
- * @memberof ZipCodeClass
57
- */
58
- 'createdBy': string;
59
- /**
60
- * Identifier of the user who last updated the record.
61
- * @type {string}
62
- * @memberof ZipCodeClass
63
- */
64
- 'updatedBy': string;
65
- }
66
-