@pescheckit/pescheck-client 0.0.5

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 (285) hide show
  1. package/.openapi-generator/FILES +97 -0
  2. package/.openapi-generator/VERSION +1 -0
  3. package/.openapi-generator-ignore +23 -0
  4. package/README.md +200 -0
  5. package/dist/apis/AuthenticationApi.d.ts +131 -0
  6. package/dist/apis/AuthenticationApi.js +168 -0
  7. package/dist/apis/ChecksApi.d.ts +91 -0
  8. package/dist/apis/ChecksApi.js +116 -0
  9. package/dist/apis/DivisionsApi.d.ts +211 -0
  10. package/dist/apis/DivisionsApi.js +264 -0
  11. package/dist/apis/OAuthApi.d.ts +124 -0
  12. package/dist/apis/OAuthApi.js +159 -0
  13. package/dist/apis/ProfilesApi.d.ts +270 -0
  14. package/dist/apis/ProfilesApi.js +334 -0
  15. package/dist/apis/ScreeningsApi.d.ts +172 -0
  16. package/dist/apis/ScreeningsApi.js +216 -0
  17. package/dist/apis/WebhooksApi.d.ts +168 -0
  18. package/dist/apis/WebhooksApi.js +213 -0
  19. package/dist/apis/index.d.ts +7 -0
  20. package/dist/apis/index.js +25 -0
  21. package/dist/esm/apis/AuthenticationApi.d.ts +131 -0
  22. package/dist/esm/apis/AuthenticationApi.js +164 -0
  23. package/dist/esm/apis/ChecksApi.d.ts +91 -0
  24. package/dist/esm/apis/ChecksApi.js +112 -0
  25. package/dist/esm/apis/DivisionsApi.d.ts +211 -0
  26. package/dist/esm/apis/DivisionsApi.js +260 -0
  27. package/dist/esm/apis/OAuthApi.d.ts +124 -0
  28. package/dist/esm/apis/OAuthApi.js +155 -0
  29. package/dist/esm/apis/ProfilesApi.d.ts +270 -0
  30. package/dist/esm/apis/ProfilesApi.js +330 -0
  31. package/dist/esm/apis/ScreeningsApi.d.ts +172 -0
  32. package/dist/esm/apis/ScreeningsApi.js +212 -0
  33. package/dist/esm/apis/WebhooksApi.d.ts +168 -0
  34. package/dist/esm/apis/WebhooksApi.js +209 -0
  35. package/dist/esm/apis/index.d.ts +7 -0
  36. package/dist/esm/apis/index.js +9 -0
  37. package/dist/esm/index.d.ts +3 -0
  38. package/dist/esm/index.js +5 -0
  39. package/dist/esm/models/CustomTokenObtainPair.d.ts +38 -0
  40. package/dist/esm/models/CustomTokenObtainPair.js +47 -0
  41. package/dist/esm/models/DivisionReadOnly.d.ts +116 -0
  42. package/dist/esm/models/DivisionReadOnly.js +73 -0
  43. package/dist/esm/models/DivisionWrite.d.ts +98 -0
  44. package/dist/esm/models/DivisionWrite.js +78 -0
  45. package/dist/esm/models/JWTGeneration.d.ts +50 -0
  46. package/dist/esm/models/JWTGeneration.js +51 -0
  47. package/dist/esm/models/JWTResponse.d.ts +62 -0
  48. package/dist/esm/models/JWTResponse.js +61 -0
  49. package/dist/esm/models/OAuthApplication.d.ts +84 -0
  50. package/dist/esm/models/OAuthApplication.js +68 -0
  51. package/dist/esm/models/OAuthApplicationResponse.d.ts +98 -0
  52. package/dist/esm/models/OAuthApplicationResponse.js +80 -0
  53. package/dist/esm/models/PaginatedDivisionReadOnlyList.d.ts +51 -0
  54. package/dist/esm/models/PaginatedDivisionReadOnlyList.js +56 -0
  55. package/dist/esm/models/PaginatedV2ProfileListItemList.d.ts +51 -0
  56. package/dist/esm/models/PaginatedV2ProfileListItemList.js +56 -0
  57. package/dist/esm/models/PaginatedV2ScreeningListItemList.d.ts +51 -0
  58. package/dist/esm/models/PaginatedV2ScreeningListItemList.js +56 -0
  59. package/dist/esm/models/PatchedDivisionWrite.d.ts +98 -0
  60. package/dist/esm/models/PatchedDivisionWrite.js +62 -0
  61. package/dist/esm/models/PatchedV2ProfilePartialUpdate.d.ts +39 -0
  62. package/dist/esm/models/PatchedV2ProfilePartialUpdate.js +43 -0
  63. package/dist/esm/models/TokenRefresh.d.ts +38 -0
  64. package/dist/esm/models/TokenRefresh.js +44 -0
  65. package/dist/esm/models/V2Candidate.d.ts +592 -0
  66. package/dist/esm/models/V2Candidate.js +318 -0
  67. package/dist/esm/models/V2CheckField.d.ts +56 -0
  68. package/dist/esm/models/V2CheckField.js +53 -0
  69. package/dist/esm/models/V2CheckInfo.d.ts +100 -0
  70. package/dist/esm/models/V2CheckInfo.js +76 -0
  71. package/dist/esm/models/V2Document.d.ts +115 -0
  72. package/dist/esm/models/V2Document.js +84 -0
  73. package/dist/esm/models/V2DocumentContent.d.ts +40 -0
  74. package/dist/esm/models/V2DocumentContent.js +45 -0
  75. package/dist/esm/models/V2Money.d.ts +38 -0
  76. package/dist/esm/models/V2Money.js +47 -0
  77. package/dist/esm/models/V2ProfileCheck.d.ts +85 -0
  78. package/dist/esm/models/V2ProfileCheck.js +68 -0
  79. package/dist/esm/models/V2ProfileCheckEntry.d.ts +120 -0
  80. package/dist/esm/models/V2ProfileCheckEntry.js +87 -0
  81. package/dist/esm/models/V2ProfileCreate.d.ts +45 -0
  82. package/dist/esm/models/V2ProfileCreate.js +50 -0
  83. package/dist/esm/models/V2ProfileDetail.d.ts +94 -0
  84. package/dist/esm/models/V2ProfileDetail.js +75 -0
  85. package/dist/esm/models/V2ProfileListItem.d.ts +68 -0
  86. package/dist/esm/models/V2ProfileListItem.js +61 -0
  87. package/dist/esm/models/V2ProfileUpdate.d.ts +47 -0
  88. package/dist/esm/models/V2ProfileUpdate.js +50 -0
  89. package/dist/esm/models/V2ProfileUpdateCheck.d.ts +96 -0
  90. package/dist/esm/models/V2ProfileUpdateCheck.js +74 -0
  91. package/dist/esm/models/V2ScreeningCheck.d.ts +95 -0
  92. package/dist/esm/models/V2ScreeningCheck.js +72 -0
  93. package/dist/esm/models/V2ScreeningCheckEntry.d.ts +135 -0
  94. package/dist/esm/models/V2ScreeningCheckEntry.js +92 -0
  95. package/dist/esm/models/V2ScreeningCheckListItem.d.ts +93 -0
  96. package/dist/esm/models/V2ScreeningCheckListItem.js +74 -0
  97. package/dist/esm/models/V2ScreeningCreate.d.ts +46 -0
  98. package/dist/esm/models/V2ScreeningCreate.js +51 -0
  99. package/dist/esm/models/V2ScreeningDetail.d.ts +83 -0
  100. package/dist/esm/models/V2ScreeningDetail.js +70 -0
  101. package/dist/esm/models/V2ScreeningDetailProfile.d.ts +38 -0
  102. package/dist/esm/models/V2ScreeningDetailProfile.js +43 -0
  103. package/dist/esm/models/V2ScreeningListItem.d.ts +85 -0
  104. package/dist/esm/models/V2ScreeningListItem.js +69 -0
  105. package/dist/esm/models/VerifyWebhook.d.ts +34 -0
  106. package/dist/esm/models/VerifyWebhook.js +43 -0
  107. package/dist/esm/models/Webhook.d.ts +71 -0
  108. package/dist/esm/models/Webhook.js +69 -0
  109. package/dist/esm/models/WebhookResponse.d.ts +87 -0
  110. package/dist/esm/models/WebhookResponse.js +51 -0
  111. package/dist/esm/models/index.d.ts +36 -0
  112. package/dist/esm/models/index.js +38 -0
  113. package/dist/esm/runtime.d.ts +184 -0
  114. package/dist/esm/runtime.js +349 -0
  115. package/dist/index.d.ts +3 -0
  116. package/dist/index.js +21 -0
  117. package/dist/models/CustomTokenObtainPair.d.ts +38 -0
  118. package/dist/models/CustomTokenObtainPair.js +54 -0
  119. package/dist/models/DivisionReadOnly.d.ts +116 -0
  120. package/dist/models/DivisionReadOnly.js +80 -0
  121. package/dist/models/DivisionWrite.d.ts +98 -0
  122. package/dist/models/DivisionWrite.js +85 -0
  123. package/dist/models/JWTGeneration.d.ts +50 -0
  124. package/dist/models/JWTGeneration.js +58 -0
  125. package/dist/models/JWTResponse.d.ts +62 -0
  126. package/dist/models/JWTResponse.js +68 -0
  127. package/dist/models/OAuthApplication.d.ts +84 -0
  128. package/dist/models/OAuthApplication.js +76 -0
  129. package/dist/models/OAuthApplicationResponse.d.ts +98 -0
  130. package/dist/models/OAuthApplicationResponse.js +88 -0
  131. package/dist/models/PaginatedDivisionReadOnlyList.d.ts +51 -0
  132. package/dist/models/PaginatedDivisionReadOnlyList.js +63 -0
  133. package/dist/models/PaginatedV2ProfileListItemList.d.ts +51 -0
  134. package/dist/models/PaginatedV2ProfileListItemList.js +63 -0
  135. package/dist/models/PaginatedV2ScreeningListItemList.d.ts +51 -0
  136. package/dist/models/PaginatedV2ScreeningListItemList.js +63 -0
  137. package/dist/models/PatchedDivisionWrite.d.ts +98 -0
  138. package/dist/models/PatchedDivisionWrite.js +69 -0
  139. package/dist/models/PatchedV2ProfilePartialUpdate.d.ts +39 -0
  140. package/dist/models/PatchedV2ProfilePartialUpdate.js +50 -0
  141. package/dist/models/TokenRefresh.d.ts +38 -0
  142. package/dist/models/TokenRefresh.js +51 -0
  143. package/dist/models/V2Candidate.d.ts +592 -0
  144. package/dist/models/V2Candidate.js +326 -0
  145. package/dist/models/V2CheckField.d.ts +56 -0
  146. package/dist/models/V2CheckField.js +60 -0
  147. package/dist/models/V2CheckInfo.d.ts +100 -0
  148. package/dist/models/V2CheckInfo.js +83 -0
  149. package/dist/models/V2Document.d.ts +115 -0
  150. package/dist/models/V2Document.js +92 -0
  151. package/dist/models/V2DocumentContent.d.ts +40 -0
  152. package/dist/models/V2DocumentContent.js +52 -0
  153. package/dist/models/V2Money.d.ts +38 -0
  154. package/dist/models/V2Money.js +54 -0
  155. package/dist/models/V2ProfileCheck.d.ts +85 -0
  156. package/dist/models/V2ProfileCheck.js +76 -0
  157. package/dist/models/V2ProfileCheckEntry.d.ts +120 -0
  158. package/dist/models/V2ProfileCheckEntry.js +95 -0
  159. package/dist/models/V2ProfileCreate.d.ts +45 -0
  160. package/dist/models/V2ProfileCreate.js +57 -0
  161. package/dist/models/V2ProfileDetail.d.ts +94 -0
  162. package/dist/models/V2ProfileDetail.js +82 -0
  163. package/dist/models/V2ProfileListItem.d.ts +68 -0
  164. package/dist/models/V2ProfileListItem.js +68 -0
  165. package/dist/models/V2ProfileUpdate.d.ts +47 -0
  166. package/dist/models/V2ProfileUpdate.js +57 -0
  167. package/dist/models/V2ProfileUpdateCheck.d.ts +96 -0
  168. package/dist/models/V2ProfileUpdateCheck.js +82 -0
  169. package/dist/models/V2ScreeningCheck.d.ts +95 -0
  170. package/dist/models/V2ScreeningCheck.js +80 -0
  171. package/dist/models/V2ScreeningCheckEntry.d.ts +135 -0
  172. package/dist/models/V2ScreeningCheckEntry.js +100 -0
  173. package/dist/models/V2ScreeningCheckListItem.d.ts +93 -0
  174. package/dist/models/V2ScreeningCheckListItem.js +82 -0
  175. package/dist/models/V2ScreeningCreate.d.ts +46 -0
  176. package/dist/models/V2ScreeningCreate.js +58 -0
  177. package/dist/models/V2ScreeningDetail.d.ts +83 -0
  178. package/dist/models/V2ScreeningDetail.js +77 -0
  179. package/dist/models/V2ScreeningDetailProfile.d.ts +38 -0
  180. package/dist/models/V2ScreeningDetailProfile.js +50 -0
  181. package/dist/models/V2ScreeningListItem.d.ts +85 -0
  182. package/dist/models/V2ScreeningListItem.js +76 -0
  183. package/dist/models/VerifyWebhook.d.ts +34 -0
  184. package/dist/models/VerifyWebhook.js +50 -0
  185. package/dist/models/Webhook.d.ts +71 -0
  186. package/dist/models/Webhook.js +77 -0
  187. package/dist/models/WebhookResponse.d.ts +87 -0
  188. package/dist/models/WebhookResponse.js +58 -0
  189. package/dist/models/index.d.ts +36 -0
  190. package/dist/models/index.js +54 -0
  191. package/dist/runtime.d.ts +184 -0
  192. package/dist/runtime.js +365 -0
  193. package/docs/AuthenticationApi.md +227 -0
  194. package/docs/ChecksApi.md +150 -0
  195. package/docs/CustomTokenObtainPair.md +37 -0
  196. package/docs/DivisionReadOnly.md +62 -0
  197. package/docs/DivisionWrite.md +56 -0
  198. package/docs/DivisionsApi.md +380 -0
  199. package/docs/JWTGeneration.md +41 -0
  200. package/docs/JWTResponse.md +45 -0
  201. package/docs/OAuthApi.md +222 -0
  202. package/docs/OAuthApplication.md +43 -0
  203. package/docs/OAuthApplicationResponse.md +49 -0
  204. package/docs/PaginatedDivisionReadOnlyList.md +40 -0
  205. package/docs/PaginatedV2ProfileListItemList.md +40 -0
  206. package/docs/PaginatedV2ScreeningListItemList.md +40 -0
  207. package/docs/PatchedDivisionWrite.md +56 -0
  208. package/docs/PatchedV2ProfilePartialUpdate.md +37 -0
  209. package/docs/ProfilesApi.md +456 -0
  210. package/docs/ScreeningsApi.md +302 -0
  211. package/docs/TokenRefresh.md +36 -0
  212. package/docs/V2Candidate.md +53 -0
  213. package/docs/V2CheckField.md +43 -0
  214. package/docs/V2CheckInfo.md +57 -0
  215. package/docs/V2Document.md +45 -0
  216. package/docs/V2DocumentContent.md +37 -0
  217. package/docs/V2Money.md +36 -0
  218. package/docs/V2ProfileCheck.md +37 -0
  219. package/docs/V2ProfileCheckEntry.md +46 -0
  220. package/docs/V2ProfileCreate.md +38 -0
  221. package/docs/V2ProfileDetail.md +54 -0
  222. package/docs/V2ProfileListItem.md +46 -0
  223. package/docs/V2ProfileUpdate.md +39 -0
  224. package/docs/V2ProfileUpdateCheck.md +39 -0
  225. package/docs/V2ScreeningCheck.md +41 -0
  226. package/docs/V2ScreeningCheckEntry.md +50 -0
  227. package/docs/V2ScreeningCheckListItem.md +39 -0
  228. package/docs/V2ScreeningCreate.md +38 -0
  229. package/docs/V2ScreeningDetail.md +50 -0
  230. package/docs/V2ScreeningDetailProfile.md +36 -0
  231. package/docs/V2ScreeningListItem.md +51 -0
  232. package/docs/VerifyWebhook.md +35 -0
  233. package/docs/Webhook.md +43 -0
  234. package/docs/WebhookResponse.md +53 -0
  235. package/docs/WebhooksApi.md +305 -0
  236. package/package.json +25 -0
  237. package/src/apis/AuthenticationApi.ts +285 -0
  238. package/src/apis/ChecksApi.ts +181 -0
  239. package/src/apis/DivisionsApi.ts +462 -0
  240. package/src/apis/OAuthApi.ts +256 -0
  241. package/src/apis/ProfilesApi.ts +583 -0
  242. package/src/apis/ScreeningsApi.ts +376 -0
  243. package/src/apis/WebhooksApi.ts +363 -0
  244. package/src/apis/index.ts +9 -0
  245. package/src/index.ts +5 -0
  246. package/src/models/CustomTokenObtainPair.ts +75 -0
  247. package/src/models/DivisionReadOnly.ts +177 -0
  248. package/src/models/DivisionWrite.ts +160 -0
  249. package/src/models/JWTGeneration.ts +91 -0
  250. package/src/models/JWTResponse.ts +110 -0
  251. package/src/models/OAuthApplication.ts +130 -0
  252. package/src/models/OAuthApplicationResponse.ts +151 -0
  253. package/src/models/PaginatedDivisionReadOnlyList.ts +101 -0
  254. package/src/models/PaginatedV2ProfileListItemList.ts +101 -0
  255. package/src/models/PaginatedV2ScreeningListItemList.ts +101 -0
  256. package/src/models/PatchedDivisionWrite.ts +152 -0
  257. package/src/models/PatchedV2ProfilePartialUpdate.ts +74 -0
  258. package/src/models/TokenRefresh.ts +73 -0
  259. package/src/models/V2Candidate.ts +649 -0
  260. package/src/models/V2CheckField.ts +97 -0
  261. package/src/models/V2CheckInfo.ts +168 -0
  262. package/src/models/V2Document.ts +166 -0
  263. package/src/models/V2DocumentContent.ts +76 -0
  264. package/src/models/V2Money.ts +75 -0
  265. package/src/models/V2ProfileCheck.ts +122 -0
  266. package/src/models/V2ProfileCheckEntry.ts +173 -0
  267. package/src/models/V2ProfileCreate.ts +91 -0
  268. package/src/models/V2ProfileDetail.ts +162 -0
  269. package/src/models/V2ProfileListItem.ts +115 -0
  270. package/src/models/V2ProfileUpdate.ts +93 -0
  271. package/src/models/V2ProfileUpdateCheck.ts +135 -0
  272. package/src/models/V2ScreeningCheck.ts +136 -0
  273. package/src/models/V2ScreeningCheckEntry.ts +181 -0
  274. package/src/models/V2ScreeningCheckListItem.ts +133 -0
  275. package/src/models/V2ScreeningCreate.ts +98 -0
  276. package/src/models/V2ScreeningDetail.ts +152 -0
  277. package/src/models/V2ScreeningDetailProfile.ts +73 -0
  278. package/src/models/V2ScreeningListItem.ts +154 -0
  279. package/src/models/VerifyWebhook.ts +68 -0
  280. package/src/models/Webhook.ts +118 -0
  281. package/src/models/WebhookResponse.ts +140 -0
  282. package/src/models/index.ts +38 -0
  283. package/src/runtime.ts +449 -0
  284. package/tsconfig.esm.json +7 -0
  285. package/tsconfig.json +16 -0
@@ -0,0 +1,592 @@
1
+ /**
2
+ * Pescheck API
3
+ * Official client library for the Pescheck API (v2), generated from the OpenAPI specification. Authenticate with OAuth2 client credentials and use the checks, profiles, screenings, webhooks and divisions endpoints. See https://github.com/pescheckit/pescheck-clients for installation and usage.
4
+ *
5
+ * The version of the OpenAPI document: 2.0.0
6
+ *
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
+ * Bucket-level candidate facts. Required-ness varies per profile; serializer is lenient.
14
+ *
15
+ * Note: v2 tightens nationality vs v1 - v1 accepted any free-form string, v2 requires
16
+ * an ISO 3166-1 alpha-2 code so downstream consumers (watchlist matching, document
17
+ * readers, etc.) can rely on the value.
18
+ * @export
19
+ * @interface V2Candidate
20
+ */
21
+ export interface V2Candidate {
22
+ /**
23
+ *
24
+ * @type {string}
25
+ * @memberof V2Candidate
26
+ */
27
+ firstName: string;
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof V2Candidate
32
+ */
33
+ lastName: string;
34
+ /**
35
+ *
36
+ * @type {string}
37
+ * @memberof V2Candidate
38
+ */
39
+ email: string;
40
+ /**
41
+ *
42
+ * @type {string}
43
+ * @memberof V2Candidate
44
+ */
45
+ initials?: string;
46
+ /**
47
+ *
48
+ * @type {string}
49
+ * @memberof V2Candidate
50
+ */
51
+ dateOfBirth?: string;
52
+ /**
53
+ *
54
+ * @type {string}
55
+ * @memberof V2Candidate
56
+ */
57
+ gender?: string;
58
+ /**
59
+ * ISO 3166-1 alpha-2 country code (e.g. "NL", "DE", "US").
60
+ *
61
+ * * `AD` - AD
62
+ * * `AE` - AE
63
+ * * `AF` - AF
64
+ * * `AG` - AG
65
+ * * `AI` - AI
66
+ * * `AL` - AL
67
+ * * `AM` - AM
68
+ * * `AN` - AN
69
+ * * `AO` - AO
70
+ * * `AQ` - AQ
71
+ * * `AR` - AR
72
+ * * `AS` - AS
73
+ * * `AT` - AT
74
+ * * `AU` - AU
75
+ * * `AW` - AW
76
+ * * `AX` - AX
77
+ * * `AZ` - AZ
78
+ * * `BA` - BA
79
+ * * `BB` - BB
80
+ * * `BD` - BD
81
+ * * `BE` - BE
82
+ * * `BF` - BF
83
+ * * `BG` - BG
84
+ * * `BH` - BH
85
+ * * `BI` - BI
86
+ * * `BJ` - BJ
87
+ * * `BL` - BL
88
+ * * `BM` - BM
89
+ * * `BN` - BN
90
+ * * `BO` - BO
91
+ * * `BR` - BR
92
+ * * `BS` - BS
93
+ * * `BT` - BT
94
+ * * `BV` - BV
95
+ * * `BW` - BW
96
+ * * `BY` - BY
97
+ * * `BZ` - BZ
98
+ * * `CA` - CA
99
+ * * `CC` - CC
100
+ * * `CD` - CD
101
+ * * `CF` - CF
102
+ * * `CG` - CG
103
+ * * `CH` - CH
104
+ * * `CI` - CI
105
+ * * `CK` - CK
106
+ * * `CL` - CL
107
+ * * `CM` - CM
108
+ * * `CN` - CN
109
+ * * `CO` - CO
110
+ * * `CR` - CR
111
+ * * `CU` - CU
112
+ * * `CV` - CV
113
+ * * `CW` - CW
114
+ * * `CX` - CX
115
+ * * `CY` - CY
116
+ * * `CZ` - CZ
117
+ * * `DE` - DE
118
+ * * `DJ` - DJ
119
+ * * `DK` - DK
120
+ * * `DM` - DM
121
+ * * `DO` - DO
122
+ * * `DZ` - DZ
123
+ * * `EC` - EC
124
+ * * `EE` - EE
125
+ * * `EG` - EG
126
+ * * `EH` - EH
127
+ * * `ER` - ER
128
+ * * `ES` - ES
129
+ * * `ET` - ET
130
+ * * `FI` - FI
131
+ * * `FJ` - FJ
132
+ * * `FK` - FK
133
+ * * `FM` - FM
134
+ * * `FO` - FO
135
+ * * `FR` - FR
136
+ * * `GA` - GA
137
+ * * `GB` - GB
138
+ * * `GD` - GD
139
+ * * `GE` - GE
140
+ * * `GF` - GF
141
+ * * `GG` - GG
142
+ * * `GH` - GH
143
+ * * `GI` - GI
144
+ * * `GL` - GL
145
+ * * `GM` - GM
146
+ * * `GN` - GN
147
+ * * `GP` - GP
148
+ * * `GQ` - GQ
149
+ * * `GR` - GR
150
+ * * `GS` - GS
151
+ * * `GT` - GT
152
+ * * `GU` - GU
153
+ * * `GW` - GW
154
+ * * `GY` - GY
155
+ * * `HK` - HK
156
+ * * `HM` - HM
157
+ * * `HN` - HN
158
+ * * `HR` - HR
159
+ * * `HT` - HT
160
+ * * `HU` - HU
161
+ * * `ID` - ID
162
+ * * `IE` - IE
163
+ * * `IL` - IL
164
+ * * `IM` - IM
165
+ * * `IN` - IN
166
+ * * `IO` - IO
167
+ * * `IQ` - IQ
168
+ * * `IR` - IR
169
+ * * `IS` - IS
170
+ * * `IT` - IT
171
+ * * `JE` - JE
172
+ * * `JM` - JM
173
+ * * `JO` - JO
174
+ * * `JP` - JP
175
+ * * `KE` - KE
176
+ * * `KG` - KG
177
+ * * `KH` - KH
178
+ * * `KI` - KI
179
+ * * `KM` - KM
180
+ * * `KN` - KN
181
+ * * `KP` - KP
182
+ * * `KR` - KR
183
+ * * `KW` - KW
184
+ * * `KY` - KY
185
+ * * `KZ` - KZ
186
+ * * `LA` - LA
187
+ * * `LB` - LB
188
+ * * `LC` - LC
189
+ * * `LI` - LI
190
+ * * `LK` - LK
191
+ * * `LR` - LR
192
+ * * `LS` - LS
193
+ * * `LT` - LT
194
+ * * `LU` - LU
195
+ * * `LV` - LV
196
+ * * `LY` - LY
197
+ * * `MA` - MA
198
+ * * `MC` - MC
199
+ * * `MD` - MD
200
+ * * `ME` - ME
201
+ * * `MG` - MG
202
+ * * `MH` - MH
203
+ * * `MK` - MK
204
+ * * `ML` - ML
205
+ * * `MM` - MM
206
+ * * `MN` - MN
207
+ * * `MO` - MO
208
+ * * `MP` - MP
209
+ * * `MQ` - MQ
210
+ * * `MR` - MR
211
+ * * `MS` - MS
212
+ * * `MT` - MT
213
+ * * `MU` - MU
214
+ * * `MV` - MV
215
+ * * `MW` - MW
216
+ * * `MX` - MX
217
+ * * `MY` - MY
218
+ * * `MZ` - MZ
219
+ * * `NA` - NA
220
+ * * `NC` - NC
221
+ * * `NE` - NE
222
+ * * `NF` - NF
223
+ * * `NG` - NG
224
+ * * `NI` - NI
225
+ * * `NL` - NL
226
+ * * `NO` - NO
227
+ * * `NP` - NP
228
+ * * `NR` - NR
229
+ * * `NU` - NU
230
+ * * `NZ` - NZ
231
+ * * `OM` - OM
232
+ * * `PA` - PA
233
+ * * `PE` - PE
234
+ * * `PF` - PF
235
+ * * `PG` - PG
236
+ * * `PH` - PH
237
+ * * `PK` - PK
238
+ * * `PL` - PL
239
+ * * `PM` - PM
240
+ * * `PN` - PN
241
+ * * `PR` - PR
242
+ * * `PS` - PS
243
+ * * `PT` - PT
244
+ * * `PW` - PW
245
+ * * `PY` - PY
246
+ * * `QA` - QA
247
+ * * `RE` - RE
248
+ * * `RO` - RO
249
+ * * `RS` - RS
250
+ * * `RU` - RU
251
+ * * `RW` - RW
252
+ * * `SA` - SA
253
+ * * `SB` - SB
254
+ * * `SC` - SC
255
+ * * `SD` - SD
256
+ * * `SE` - SE
257
+ * * `SG` - SG
258
+ * * `SH` - SH
259
+ * * `SI` - SI
260
+ * * `SJ` - SJ
261
+ * * `SK` - SK
262
+ * * `SL` - SL
263
+ * * `SM` - SM
264
+ * * `SN` - SN
265
+ * * `SO` - SO
266
+ * * `SR` - SR
267
+ * * `ST` - ST
268
+ * * `SV` - SV
269
+ * * `SY` - SY
270
+ * * `SZ` - SZ
271
+ * * `TC` - TC
272
+ * * `TD` - TD
273
+ * * `TF` - TF
274
+ * * `TG` - TG
275
+ * * `TH` - TH
276
+ * * `TJ` - TJ
277
+ * * `TK` - TK
278
+ * * `TL` - TL
279
+ * * `TM` - TM
280
+ * * `TN` - TN
281
+ * * `TO` - TO
282
+ * * `TR` - TR
283
+ * * `TT` - TT
284
+ * * `TV` - TV
285
+ * * `TW` - TW
286
+ * * `TZ` - TZ
287
+ * * `UA` - UA
288
+ * * `UG` - UG
289
+ * * `UM` - UM
290
+ * * `US` - US
291
+ * * `UY` - UY
292
+ * * `UZ` - UZ
293
+ * * `VA` - VA
294
+ * * `VC` - VC
295
+ * * `VE` - VE
296
+ * * `VG` - VG
297
+ * * `VI` - VI
298
+ * * `VN` - VN
299
+ * * `VU` - VU
300
+ * * `WF` - WF
301
+ * * `WS` - WS
302
+ * * `XK` - XK
303
+ * * `YE` - YE
304
+ * * `YT` - YT
305
+ * * `ZA` - ZA
306
+ * * `ZM` - ZM
307
+ * * `ZW` - ZW
308
+ * @type {V2CandidateNationalityEnum}
309
+ * @memberof V2Candidate
310
+ */
311
+ nationality?: V2CandidateNationalityEnum;
312
+ /**
313
+ *
314
+ * @type {string}
315
+ * @memberof V2Candidate
316
+ */
317
+ postalCode?: string;
318
+ /**
319
+ *
320
+ * @type {string}
321
+ * @memberof V2Candidate
322
+ */
323
+ houseNumber?: string;
324
+ /**
325
+ *
326
+ * @type {string}
327
+ * @memberof V2Candidate
328
+ */
329
+ extension?: string;
330
+ }
331
+ /**
332
+ * @export
333
+ */
334
+ export declare const V2CandidateNationalityEnum: {
335
+ readonly Ad: "AD";
336
+ readonly Ae: "AE";
337
+ readonly Af: "AF";
338
+ readonly Ag: "AG";
339
+ readonly Ai: "AI";
340
+ readonly Al: "AL";
341
+ readonly Am: "AM";
342
+ readonly An: "AN";
343
+ readonly Ao: "AO";
344
+ readonly Aq: "AQ";
345
+ readonly Ar: "AR";
346
+ readonly As: "AS";
347
+ readonly At: "AT";
348
+ readonly Au: "AU";
349
+ readonly Aw: "AW";
350
+ readonly Ax: "AX";
351
+ readonly Az: "AZ";
352
+ readonly Ba: "BA";
353
+ readonly Bb: "BB";
354
+ readonly Bd: "BD";
355
+ readonly Be: "BE";
356
+ readonly Bf: "BF";
357
+ readonly Bg: "BG";
358
+ readonly Bh: "BH";
359
+ readonly Bi: "BI";
360
+ readonly Bj: "BJ";
361
+ readonly Bl: "BL";
362
+ readonly Bm: "BM";
363
+ readonly Bn: "BN";
364
+ readonly Bo: "BO";
365
+ readonly Br: "BR";
366
+ readonly Bs: "BS";
367
+ readonly Bt: "BT";
368
+ readonly Bv: "BV";
369
+ readonly Bw: "BW";
370
+ readonly By: "BY";
371
+ readonly Bz: "BZ";
372
+ readonly Ca: "CA";
373
+ readonly Cc: "CC";
374
+ readonly Cd: "CD";
375
+ readonly Cf: "CF";
376
+ readonly Cg: "CG";
377
+ readonly Ch: "CH";
378
+ readonly Ci: "CI";
379
+ readonly Ck: "CK";
380
+ readonly Cl: "CL";
381
+ readonly Cm: "CM";
382
+ readonly Cn: "CN";
383
+ readonly Co: "CO";
384
+ readonly Cr: "CR";
385
+ readonly Cu: "CU";
386
+ readonly Cv: "CV";
387
+ readonly Cw: "CW";
388
+ readonly Cx: "CX";
389
+ readonly Cy: "CY";
390
+ readonly Cz: "CZ";
391
+ readonly De: "DE";
392
+ readonly Dj: "DJ";
393
+ readonly Dk: "DK";
394
+ readonly Dm: "DM";
395
+ readonly Do: "DO";
396
+ readonly Dz: "DZ";
397
+ readonly Ec: "EC";
398
+ readonly Ee: "EE";
399
+ readonly Eg: "EG";
400
+ readonly Eh: "EH";
401
+ readonly Er: "ER";
402
+ readonly Es: "ES";
403
+ readonly Et: "ET";
404
+ readonly Fi: "FI";
405
+ readonly Fj: "FJ";
406
+ readonly Fk: "FK";
407
+ readonly Fm: "FM";
408
+ readonly Fo: "FO";
409
+ readonly Fr: "FR";
410
+ readonly Ga: "GA";
411
+ readonly Gb: "GB";
412
+ readonly Gd: "GD";
413
+ readonly Ge: "GE";
414
+ readonly Gf: "GF";
415
+ readonly Gg: "GG";
416
+ readonly Gh: "GH";
417
+ readonly Gi: "GI";
418
+ readonly Gl: "GL";
419
+ readonly Gm: "GM";
420
+ readonly Gn: "GN";
421
+ readonly Gp: "GP";
422
+ readonly Gq: "GQ";
423
+ readonly Gr: "GR";
424
+ readonly Gs: "GS";
425
+ readonly Gt: "GT";
426
+ readonly Gu: "GU";
427
+ readonly Gw: "GW";
428
+ readonly Gy: "GY";
429
+ readonly Hk: "HK";
430
+ readonly Hm: "HM";
431
+ readonly Hn: "HN";
432
+ readonly Hr: "HR";
433
+ readonly Ht: "HT";
434
+ readonly Hu: "HU";
435
+ readonly Id: "ID";
436
+ readonly Ie: "IE";
437
+ readonly Il: "IL";
438
+ readonly Im: "IM";
439
+ readonly In: "IN";
440
+ readonly Io: "IO";
441
+ readonly Iq: "IQ";
442
+ readonly Ir: "IR";
443
+ readonly Is: "IS";
444
+ readonly It: "IT";
445
+ readonly Je: "JE";
446
+ readonly Jm: "JM";
447
+ readonly Jo: "JO";
448
+ readonly Jp: "JP";
449
+ readonly Ke: "KE";
450
+ readonly Kg: "KG";
451
+ readonly Kh: "KH";
452
+ readonly Ki: "KI";
453
+ readonly Km: "KM";
454
+ readonly Kn: "KN";
455
+ readonly Kp: "KP";
456
+ readonly Kr: "KR";
457
+ readonly Kw: "KW";
458
+ readonly Ky: "KY";
459
+ readonly Kz: "KZ";
460
+ readonly La: "LA";
461
+ readonly Lb: "LB";
462
+ readonly Lc: "LC";
463
+ readonly Li: "LI";
464
+ readonly Lk: "LK";
465
+ readonly Lr: "LR";
466
+ readonly Ls: "LS";
467
+ readonly Lt: "LT";
468
+ readonly Lu: "LU";
469
+ readonly Lv: "LV";
470
+ readonly Ly: "LY";
471
+ readonly Ma: "MA";
472
+ readonly Mc: "MC";
473
+ readonly Md: "MD";
474
+ readonly Me: "ME";
475
+ readonly Mg: "MG";
476
+ readonly Mh: "MH";
477
+ readonly Mk: "MK";
478
+ readonly Ml: "ML";
479
+ readonly Mm: "MM";
480
+ readonly Mn: "MN";
481
+ readonly Mo: "MO";
482
+ readonly Mp: "MP";
483
+ readonly Mq: "MQ";
484
+ readonly Mr: "MR";
485
+ readonly Ms: "MS";
486
+ readonly Mt: "MT";
487
+ readonly Mu: "MU";
488
+ readonly Mv: "MV";
489
+ readonly Mw: "MW";
490
+ readonly Mx: "MX";
491
+ readonly My: "MY";
492
+ readonly Mz: "MZ";
493
+ readonly Na: "NA";
494
+ readonly Nc: "NC";
495
+ readonly Ne: "NE";
496
+ readonly Nf: "NF";
497
+ readonly Ng: "NG";
498
+ readonly Ni: "NI";
499
+ readonly Nl: "NL";
500
+ readonly No: "NO";
501
+ readonly Np: "NP";
502
+ readonly Nr: "NR";
503
+ readonly Nu: "NU";
504
+ readonly Nz: "NZ";
505
+ readonly Om: "OM";
506
+ readonly Pa: "PA";
507
+ readonly Pe: "PE";
508
+ readonly Pf: "PF";
509
+ readonly Pg: "PG";
510
+ readonly Ph: "PH";
511
+ readonly Pk: "PK";
512
+ readonly Pl: "PL";
513
+ readonly Pm: "PM";
514
+ readonly Pn: "PN";
515
+ readonly Pr: "PR";
516
+ readonly Ps: "PS";
517
+ readonly Pt: "PT";
518
+ readonly Pw: "PW";
519
+ readonly Py: "PY";
520
+ readonly Qa: "QA";
521
+ readonly Re: "RE";
522
+ readonly Ro: "RO";
523
+ readonly Rs: "RS";
524
+ readonly Ru: "RU";
525
+ readonly Rw: "RW";
526
+ readonly Sa: "SA";
527
+ readonly Sb: "SB";
528
+ readonly Sc: "SC";
529
+ readonly Sd: "SD";
530
+ readonly Se: "SE";
531
+ readonly Sg: "SG";
532
+ readonly Sh: "SH";
533
+ readonly Si: "SI";
534
+ readonly Sj: "SJ";
535
+ readonly Sk: "SK";
536
+ readonly Sl: "SL";
537
+ readonly Sm: "SM";
538
+ readonly Sn: "SN";
539
+ readonly So: "SO";
540
+ readonly Sr: "SR";
541
+ readonly St: "ST";
542
+ readonly Sv: "SV";
543
+ readonly Sy: "SY";
544
+ readonly Sz: "SZ";
545
+ readonly Tc: "TC";
546
+ readonly Td: "TD";
547
+ readonly Tf: "TF";
548
+ readonly Tg: "TG";
549
+ readonly Th: "TH";
550
+ readonly Tj: "TJ";
551
+ readonly Tk: "TK";
552
+ readonly Tl: "TL";
553
+ readonly Tm: "TM";
554
+ readonly Tn: "TN";
555
+ readonly To: "TO";
556
+ readonly Tr: "TR";
557
+ readonly Tt: "TT";
558
+ readonly Tv: "TV";
559
+ readonly Tw: "TW";
560
+ readonly Tz: "TZ";
561
+ readonly Ua: "UA";
562
+ readonly Ug: "UG";
563
+ readonly Um: "UM";
564
+ readonly Us: "US";
565
+ readonly Uy: "UY";
566
+ readonly Uz: "UZ";
567
+ readonly Va: "VA";
568
+ readonly Vc: "VC";
569
+ readonly Ve: "VE";
570
+ readonly Vg: "VG";
571
+ readonly Vi: "VI";
572
+ readonly Vn: "VN";
573
+ readonly Vu: "VU";
574
+ readonly Wf: "WF";
575
+ readonly Ws: "WS";
576
+ readonly Xk: "XK";
577
+ readonly Ye: "YE";
578
+ readonly Yt: "YT";
579
+ readonly Za: "ZA";
580
+ readonly Zm: "ZM";
581
+ readonly Zw: "ZW";
582
+ readonly Empty: "";
583
+ };
584
+ export type V2CandidateNationalityEnum = typeof V2CandidateNationalityEnum[keyof typeof V2CandidateNationalityEnum];
585
+ /**
586
+ * Check if a given object implements the V2Candidate interface.
587
+ */
588
+ export declare function instanceOfV2Candidate(value: any): value is V2Candidate;
589
+ export declare function V2CandidateFromJSON(json: any): V2Candidate;
590
+ export declare function V2CandidateFromJSONTyped(json: any, ignoreDiscriminator: boolean): V2Candidate;
591
+ export declare function V2CandidateToJSON(json: any): V2Candidate;
592
+ export declare function V2CandidateToJSONTyped(value?: V2Candidate | null, ignoreDiscriminator?: boolean): any;