dataleon 0.1.0.pre.alpha.5 → 0.1.0.pre.alpha.6

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.
@@ -1145,6 +1145,28 @@ module Dataleon
1145
1145
  sig { params(notification_confirmation: T::Boolean).void }
1146
1146
  attr_writer :notification_confirmation
1147
1147
 
1148
+ # List of steps to include in the portal workflow.
1149
+ sig do
1150
+ returns(
1151
+ T.nilable(
1152
+ T::Array[
1153
+ Dataleon::Individual::TechnicalData::PortalStep::TaggedSymbol
1154
+ ]
1155
+ )
1156
+ )
1157
+ end
1158
+ attr_reader :portal_steps
1159
+
1160
+ sig do
1161
+ params(
1162
+ portal_steps:
1163
+ T::Array[
1164
+ Dataleon::Individual::TechnicalData::PortalStep::OrSymbol
1165
+ ]
1166
+ ).void
1167
+ end
1168
+ attr_writer :portal_steps
1169
+
1148
1170
  # Indicates whether QR code is enabled ("true" or "false").
1149
1171
  sig { returns(T.nilable(String)) }
1150
1172
  attr_reader :qr_code
@@ -1209,6 +1231,10 @@ module Dataleon
1209
1231
  location_ip: String,
1210
1232
  need_review_at: T.nilable(Time),
1211
1233
  notification_confirmation: T::Boolean,
1234
+ portal_steps:
1235
+ T::Array[
1236
+ Dataleon::Individual::TechnicalData::PortalStep::OrSymbol
1237
+ ],
1212
1238
  qr_code: String,
1213
1239
  raw_data: T::Boolean,
1214
1240
  rejected_at: T.nilable(Time),
@@ -1250,6 +1276,8 @@ module Dataleon
1250
1276
  need_review_at: nil,
1251
1277
  # Flag indicating if notification confirmation is required or received.
1252
1278
  notification_confirmation: nil,
1279
+ # List of steps to include in the portal workflow.
1280
+ portal_steps: nil,
1253
1281
  # Indicates whether QR code is enabled ("true" or "false").
1254
1282
  qr_code: nil,
1255
1283
  # Flag indicating whether to include raw data in the response.
@@ -1285,6 +1313,10 @@ module Dataleon
1285
1313
  location_ip: String,
1286
1314
  need_review_at: T.nilable(Time),
1287
1315
  notification_confirmation: T::Boolean,
1316
+ portal_steps:
1317
+ T::Array[
1318
+ Dataleon::Individual::TechnicalData::PortalStep::TaggedSymbol
1319
+ ],
1288
1320
  qr_code: String,
1289
1321
  raw_data: T::Boolean,
1290
1322
  rejected_at: T.nilable(Time),
@@ -1297,6 +1329,52 @@ module Dataleon
1297
1329
  end
1298
1330
  def to_hash
1299
1331
  end
1332
+
1333
+ module PortalStep
1334
+ extend Dataleon::Internal::Type::Enum
1335
+
1336
+ TaggedSymbol =
1337
+ T.type_alias do
1338
+ T.all(Symbol, Dataleon::Individual::TechnicalData::PortalStep)
1339
+ end
1340
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
1341
+
1342
+ IDENTITY_VERIFICATION =
1343
+ T.let(
1344
+ :identity_verification,
1345
+ Dataleon::Individual::TechnicalData::PortalStep::TaggedSymbol
1346
+ )
1347
+ DOCUMENT_SIGNING =
1348
+ T.let(
1349
+ :document_signing,
1350
+ Dataleon::Individual::TechnicalData::PortalStep::TaggedSymbol
1351
+ )
1352
+ PROOF_OF_ADDRESS =
1353
+ T.let(
1354
+ :proof_of_address,
1355
+ Dataleon::Individual::TechnicalData::PortalStep::TaggedSymbol
1356
+ )
1357
+ SELFIE =
1358
+ T.let(
1359
+ :selfie,
1360
+ Dataleon::Individual::TechnicalData::PortalStep::TaggedSymbol
1361
+ )
1362
+ FACE_MATCH =
1363
+ T.let(
1364
+ :face_match,
1365
+ Dataleon::Individual::TechnicalData::PortalStep::TaggedSymbol
1366
+ )
1367
+
1368
+ sig do
1369
+ override.returns(
1370
+ T::Array[
1371
+ Dataleon::Individual::TechnicalData::PortalStep::TaggedSymbol
1372
+ ]
1373
+ )
1374
+ end
1375
+ def self.values
1376
+ end
1377
+ end
1300
1378
  end
1301
1379
  end
1302
1380
  end
@@ -289,6 +289,28 @@ module Dataleon
289
289
  sig { params(language: String).void }
290
290
  attr_writer :language
291
291
 
292
+ # List of steps to include in the portal workflow.
293
+ sig do
294
+ returns(
295
+ T.nilable(
296
+ T::Array[
297
+ Dataleon::IndividualCreateParams::TechnicalData::PortalStep::OrSymbol
298
+ ]
299
+ )
300
+ )
301
+ end
302
+ attr_reader :portal_steps
303
+
304
+ sig do
305
+ params(
306
+ portal_steps:
307
+ T::Array[
308
+ Dataleon::IndividualCreateParams::TechnicalData::PortalStep::OrSymbol
309
+ ]
310
+ ).void
311
+ end
312
+ attr_writer :portal_steps
313
+
292
314
  # Flag indicating whether to include raw data in the response.
293
315
  sig { returns(T.nilable(T::Boolean)) }
294
316
  attr_reader :raw_data
@@ -304,6 +326,10 @@ module Dataleon
304
326
  callback_url_notification: String,
305
327
  filtering_score_aml_suspicions: Float,
306
328
  language: String,
329
+ portal_steps:
330
+ T::Array[
331
+ Dataleon::IndividualCreateParams::TechnicalData::PortalStep::OrSymbol
332
+ ],
307
333
  raw_data: T::Boolean
308
334
  ).returns(T.attached_class)
309
335
  end
@@ -320,6 +346,8 @@ module Dataleon
320
346
  filtering_score_aml_suspicions: nil,
321
347
  # Preferred language for communication (e.g., "eng", "fra").
322
348
  language: nil,
349
+ # List of steps to include in the portal workflow.
350
+ portal_steps: nil,
323
351
  # Flag indicating whether to include raw data in the response.
324
352
  raw_data: nil
325
353
  )
@@ -333,12 +361,65 @@ module Dataleon
333
361
  callback_url_notification: String,
334
362
  filtering_score_aml_suspicions: Float,
335
363
  language: String,
364
+ portal_steps:
365
+ T::Array[
366
+ Dataleon::IndividualCreateParams::TechnicalData::PortalStep::OrSymbol
367
+ ],
336
368
  raw_data: T::Boolean
337
369
  }
338
370
  )
339
371
  end
340
372
  def to_hash
341
373
  end
374
+
375
+ module PortalStep
376
+ extend Dataleon::Internal::Type::Enum
377
+
378
+ TaggedSymbol =
379
+ T.type_alias do
380
+ T.all(
381
+ Symbol,
382
+ Dataleon::IndividualCreateParams::TechnicalData::PortalStep
383
+ )
384
+ end
385
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
386
+
387
+ IDENTITY_VERIFICATION =
388
+ T.let(
389
+ :identity_verification,
390
+ Dataleon::IndividualCreateParams::TechnicalData::PortalStep::TaggedSymbol
391
+ )
392
+ DOCUMENT_SIGNING =
393
+ T.let(
394
+ :document_signing,
395
+ Dataleon::IndividualCreateParams::TechnicalData::PortalStep::TaggedSymbol
396
+ )
397
+ PROOF_OF_ADDRESS =
398
+ T.let(
399
+ :proof_of_address,
400
+ Dataleon::IndividualCreateParams::TechnicalData::PortalStep::TaggedSymbol
401
+ )
402
+ SELFIE =
403
+ T.let(
404
+ :selfie,
405
+ Dataleon::IndividualCreateParams::TechnicalData::PortalStep::TaggedSymbol
406
+ )
407
+ FACE_MATCH =
408
+ T.let(
409
+ :face_match,
410
+ Dataleon::IndividualCreateParams::TechnicalData::PortalStep::TaggedSymbol
411
+ )
412
+
413
+ sig do
414
+ override.returns(
415
+ T::Array[
416
+ Dataleon::IndividualCreateParams::TechnicalData::PortalStep::TaggedSymbol
417
+ ]
418
+ )
419
+ end
420
+ def self.values
421
+ end
422
+ end
342
423
  end
343
424
  end
344
425
  end
@@ -289,6 +289,28 @@ module Dataleon
289
289
  sig { params(language: String).void }
290
290
  attr_writer :language
291
291
 
292
+ # List of steps to include in the portal workflow.
293
+ sig do
294
+ returns(
295
+ T.nilable(
296
+ T::Array[
297
+ Dataleon::IndividualUpdateParams::TechnicalData::PortalStep::OrSymbol
298
+ ]
299
+ )
300
+ )
301
+ end
302
+ attr_reader :portal_steps
303
+
304
+ sig do
305
+ params(
306
+ portal_steps:
307
+ T::Array[
308
+ Dataleon::IndividualUpdateParams::TechnicalData::PortalStep::OrSymbol
309
+ ]
310
+ ).void
311
+ end
312
+ attr_writer :portal_steps
313
+
292
314
  # Flag indicating whether to include raw data in the response.
293
315
  sig { returns(T.nilable(T::Boolean)) }
294
316
  attr_reader :raw_data
@@ -304,6 +326,10 @@ module Dataleon
304
326
  callback_url_notification: String,
305
327
  filtering_score_aml_suspicions: Float,
306
328
  language: String,
329
+ portal_steps:
330
+ T::Array[
331
+ Dataleon::IndividualUpdateParams::TechnicalData::PortalStep::OrSymbol
332
+ ],
307
333
  raw_data: T::Boolean
308
334
  ).returns(T.attached_class)
309
335
  end
@@ -320,6 +346,8 @@ module Dataleon
320
346
  filtering_score_aml_suspicions: nil,
321
347
  # Preferred language for communication (e.g., "eng", "fra").
322
348
  language: nil,
349
+ # List of steps to include in the portal workflow.
350
+ portal_steps: nil,
323
351
  # Flag indicating whether to include raw data in the response.
324
352
  raw_data: nil
325
353
  )
@@ -333,12 +361,65 @@ module Dataleon
333
361
  callback_url_notification: String,
334
362
  filtering_score_aml_suspicions: Float,
335
363
  language: String,
364
+ portal_steps:
365
+ T::Array[
366
+ Dataleon::IndividualUpdateParams::TechnicalData::PortalStep::OrSymbol
367
+ ],
336
368
  raw_data: T::Boolean
337
369
  }
338
370
  )
339
371
  end
340
372
  def to_hash
341
373
  end
374
+
375
+ module PortalStep
376
+ extend Dataleon::Internal::Type::Enum
377
+
378
+ TaggedSymbol =
379
+ T.type_alias do
380
+ T.all(
381
+ Symbol,
382
+ Dataleon::IndividualUpdateParams::TechnicalData::PortalStep
383
+ )
384
+ end
385
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
386
+
387
+ IDENTITY_VERIFICATION =
388
+ T.let(
389
+ :identity_verification,
390
+ Dataleon::IndividualUpdateParams::TechnicalData::PortalStep::TaggedSymbol
391
+ )
392
+ DOCUMENT_SIGNING =
393
+ T.let(
394
+ :document_signing,
395
+ Dataleon::IndividualUpdateParams::TechnicalData::PortalStep::TaggedSymbol
396
+ )
397
+ PROOF_OF_ADDRESS =
398
+ T.let(
399
+ :proof_of_address,
400
+ Dataleon::IndividualUpdateParams::TechnicalData::PortalStep::TaggedSymbol
401
+ )
402
+ SELFIE =
403
+ T.let(
404
+ :selfie,
405
+ Dataleon::IndividualUpdateParams::TechnicalData::PortalStep::TaggedSymbol
406
+ )
407
+ FACE_MATCH =
408
+ T.let(
409
+ :face_match,
410
+ Dataleon::IndividualUpdateParams::TechnicalData::PortalStep::TaggedSymbol
411
+ )
412
+
413
+ sig do
414
+ override.returns(
415
+ T::Array[
416
+ Dataleon::IndividualUpdateParams::TechnicalData::PortalStep::TaggedSymbol
417
+ ]
418
+ )
419
+ end
420
+ def self.values
421
+ end
422
+ end
342
423
  end
343
424
  end
344
425
  end
@@ -165,6 +165,7 @@ module Dataleon
165
165
  callback_url_notification: String,
166
166
  filtering_score_aml_suspicions: Float,
167
167
  language: String,
168
+ portal_steps: ::Array[Dataleon::Models::CompanyCreateParams::TechnicalData::portal_step],
168
169
  raw_data: bool
169
170
  }
170
171
 
@@ -189,6 +190,12 @@ module Dataleon
189
190
 
190
191
  def language=: (String) -> String
191
192
 
193
+ attr_reader portal_steps: ::Array[Dataleon::Models::CompanyCreateParams::TechnicalData::portal_step]?
194
+
195
+ def portal_steps=: (
196
+ ::Array[Dataleon::Models::CompanyCreateParams::TechnicalData::portal_step]
197
+ ) -> ::Array[Dataleon::Models::CompanyCreateParams::TechnicalData::portal_step]
198
+
192
199
  attr_reader raw_data: bool?
193
200
 
194
201
  def raw_data=: (bool) -> bool
@@ -199,6 +206,7 @@ module Dataleon
199
206
  ?callback_url_notification: String,
200
207
  ?filtering_score_aml_suspicions: Float,
201
208
  ?language: String,
209
+ ?portal_steps: ::Array[Dataleon::Models::CompanyCreateParams::TechnicalData::portal_step],
202
210
  ?raw_data: bool
203
211
  ) -> void
204
212
 
@@ -208,8 +216,28 @@ module Dataleon
208
216
  callback_url_notification: String,
209
217
  filtering_score_aml_suspicions: Float,
210
218
  language: String,
219
+ portal_steps: ::Array[Dataleon::Models::CompanyCreateParams::TechnicalData::portal_step],
211
220
  raw_data: bool
212
221
  }
222
+
223
+ type portal_step =
224
+ :identity_verification
225
+ | :document_signing
226
+ | :proof_of_address
227
+ | :selfie
228
+ | :face_match
229
+
230
+ module PortalStep
231
+ extend Dataleon::Internal::Type::Enum
232
+
233
+ IDENTITY_VERIFICATION: :identity_verification
234
+ DOCUMENT_SIGNING: :document_signing
235
+ PROOF_OF_ADDRESS: :proof_of_address
236
+ SELFIE: :selfie
237
+ FACE_MATCH: :face_match
238
+
239
+ def self?.values: -> ::Array[Dataleon::Models::CompanyCreateParams::TechnicalData::portal_step]
240
+ end
213
241
  end
214
242
  end
215
243
  end
@@ -707,6 +707,7 @@ module Dataleon
707
707
  location_ip: String,
708
708
  need_review_at: Time?,
709
709
  notification_confirmation: bool,
710
+ portal_steps: ::Array[Dataleon::Models::CompanyRegistration::TechnicalData::portal_step],
710
711
  qr_code: String,
711
712
  raw_data: bool,
712
713
  rejected_at: Time?,
@@ -773,6 +774,12 @@ module Dataleon
773
774
 
774
775
  def notification_confirmation=: (bool) -> bool
775
776
 
777
+ attr_reader portal_steps: ::Array[Dataleon::Models::CompanyRegistration::TechnicalData::portal_step]?
778
+
779
+ def portal_steps=: (
780
+ ::Array[Dataleon::Models::CompanyRegistration::TechnicalData::portal_step]
781
+ ) -> ::Array[Dataleon::Models::CompanyRegistration::TechnicalData::portal_step]
782
+
776
783
  attr_reader qr_code: String?
777
784
 
778
785
  def qr_code=: (String) -> String
@@ -815,6 +822,7 @@ module Dataleon
815
822
  ?location_ip: String,
816
823
  ?need_review_at: Time?,
817
824
  ?notification_confirmation: bool,
825
+ ?portal_steps: ::Array[Dataleon::Models::CompanyRegistration::TechnicalData::portal_step],
818
826
  ?qr_code: String,
819
827
  ?raw_data: bool,
820
828
  ?rejected_at: Time?,
@@ -840,6 +848,7 @@ module Dataleon
840
848
  location_ip: String,
841
849
  need_review_at: Time?,
842
850
  notification_confirmation: bool,
851
+ portal_steps: ::Array[Dataleon::Models::CompanyRegistration::TechnicalData::portal_step],
843
852
  qr_code: String,
844
853
  raw_data: bool,
845
854
  rejected_at: Time?,
@@ -848,6 +857,25 @@ module Dataleon
848
857
  transfer_at: Time,
849
858
  transfer_mode: String
850
859
  }
860
+
861
+ type portal_step =
862
+ :identity_verification
863
+ | :document_signing
864
+ | :proof_of_address
865
+ | :selfie
866
+ | :face_match
867
+
868
+ module PortalStep
869
+ extend Dataleon::Internal::Type::Enum
870
+
871
+ IDENTITY_VERIFICATION: :identity_verification
872
+ DOCUMENT_SIGNING: :document_signing
873
+ PROOF_OF_ADDRESS: :proof_of_address
874
+ SELFIE: :selfie
875
+ FACE_MATCH: :face_match
876
+
877
+ def self?.values: -> ::Array[Dataleon::Models::CompanyRegistration::TechnicalData::portal_step]
878
+ end
851
879
  end
852
880
  end
853
881
  end
@@ -165,6 +165,7 @@ module Dataleon
165
165
  callback_url_notification: String,
166
166
  filtering_score_aml_suspicions: Float,
167
167
  language: String,
168
+ portal_steps: ::Array[Dataleon::Models::CompanyUpdateParams::TechnicalData::portal_step],
168
169
  raw_data: bool
169
170
  }
170
171
 
@@ -189,6 +190,12 @@ module Dataleon
189
190
 
190
191
  def language=: (String) -> String
191
192
 
193
+ attr_reader portal_steps: ::Array[Dataleon::Models::CompanyUpdateParams::TechnicalData::portal_step]?
194
+
195
+ def portal_steps=: (
196
+ ::Array[Dataleon::Models::CompanyUpdateParams::TechnicalData::portal_step]
197
+ ) -> ::Array[Dataleon::Models::CompanyUpdateParams::TechnicalData::portal_step]
198
+
192
199
  attr_reader raw_data: bool?
193
200
 
194
201
  def raw_data=: (bool) -> bool
@@ -199,6 +206,7 @@ module Dataleon
199
206
  ?callback_url_notification: String,
200
207
  ?filtering_score_aml_suspicions: Float,
201
208
  ?language: String,
209
+ ?portal_steps: ::Array[Dataleon::Models::CompanyUpdateParams::TechnicalData::portal_step],
202
210
  ?raw_data: bool
203
211
  ) -> void
204
212
 
@@ -208,8 +216,28 @@ module Dataleon
208
216
  callback_url_notification: String,
209
217
  filtering_score_aml_suspicions: Float,
210
218
  language: String,
219
+ portal_steps: ::Array[Dataleon::Models::CompanyUpdateParams::TechnicalData::portal_step],
211
220
  raw_data: bool
212
221
  }
222
+
223
+ type portal_step =
224
+ :identity_verification
225
+ | :document_signing
226
+ | :proof_of_address
227
+ | :selfie
228
+ | :face_match
229
+
230
+ module PortalStep
231
+ extend Dataleon::Internal::Type::Enum
232
+
233
+ IDENTITY_VERIFICATION: :identity_verification
234
+ DOCUMENT_SIGNING: :document_signing
235
+ PROOF_OF_ADDRESS: :proof_of_address
236
+ SELFIE: :selfie
237
+ FACE_MATCH: :face_match
238
+
239
+ def self?.values: -> ::Array[Dataleon::Models::CompanyUpdateParams::TechnicalData::portal_step]
240
+ end
213
241
  end
214
242
  end
215
243
  end
@@ -584,6 +584,7 @@ module Dataleon
584
584
  location_ip: String,
585
585
  need_review_at: Time?,
586
586
  notification_confirmation: bool,
587
+ portal_steps: ::Array[Dataleon::Models::Individual::TechnicalData::portal_step],
587
588
  qr_code: String,
588
589
  raw_data: bool,
589
590
  rejected_at: Time?,
@@ -650,6 +651,12 @@ module Dataleon
650
651
 
651
652
  def notification_confirmation=: (bool) -> bool
652
653
 
654
+ attr_reader portal_steps: ::Array[Dataleon::Models::Individual::TechnicalData::portal_step]?
655
+
656
+ def portal_steps=: (
657
+ ::Array[Dataleon::Models::Individual::TechnicalData::portal_step]
658
+ ) -> ::Array[Dataleon::Models::Individual::TechnicalData::portal_step]
659
+
653
660
  attr_reader qr_code: String?
654
661
 
655
662
  def qr_code=: (String) -> String
@@ -692,6 +699,7 @@ module Dataleon
692
699
  ?location_ip: String,
693
700
  ?need_review_at: Time?,
694
701
  ?notification_confirmation: bool,
702
+ ?portal_steps: ::Array[Dataleon::Models::Individual::TechnicalData::portal_step],
695
703
  ?qr_code: String,
696
704
  ?raw_data: bool,
697
705
  ?rejected_at: Time?,
@@ -717,6 +725,7 @@ module Dataleon
717
725
  location_ip: String,
718
726
  need_review_at: Time?,
719
727
  notification_confirmation: bool,
728
+ portal_steps: ::Array[Dataleon::Models::Individual::TechnicalData::portal_step],
720
729
  qr_code: String,
721
730
  raw_data: bool,
722
731
  rejected_at: Time?,
@@ -725,6 +734,25 @@ module Dataleon
725
734
  transfer_at: Time,
726
735
  transfer_mode: String
727
736
  }
737
+
738
+ type portal_step =
739
+ :identity_verification
740
+ | :document_signing
741
+ | :proof_of_address
742
+ | :selfie
743
+ | :face_match
744
+
745
+ module PortalStep
746
+ extend Dataleon::Internal::Type::Enum
747
+
748
+ IDENTITY_VERIFICATION: :identity_verification
749
+ DOCUMENT_SIGNING: :document_signing
750
+ PROOF_OF_ADDRESS: :proof_of_address
751
+ SELFIE: :selfie
752
+ FACE_MATCH: :face_match
753
+
754
+ def self?.values: -> ::Array[Dataleon::Models::Individual::TechnicalData::portal_step]
755
+ end
728
756
  end
729
757
  end
730
758
  end
@@ -135,6 +135,7 @@ module Dataleon
135
135
  callback_url_notification: String,
136
136
  filtering_score_aml_suspicions: Float,
137
137
  language: String,
138
+ portal_steps: ::Array[Dataleon::Models::IndividualCreateParams::TechnicalData::portal_step],
138
139
  raw_data: bool
139
140
  }
140
141
 
@@ -159,6 +160,12 @@ module Dataleon
159
160
 
160
161
  def language=: (String) -> String
161
162
 
163
+ attr_reader portal_steps: ::Array[Dataleon::Models::IndividualCreateParams::TechnicalData::portal_step]?
164
+
165
+ def portal_steps=: (
166
+ ::Array[Dataleon::Models::IndividualCreateParams::TechnicalData::portal_step]
167
+ ) -> ::Array[Dataleon::Models::IndividualCreateParams::TechnicalData::portal_step]
168
+
162
169
  attr_reader raw_data: bool?
163
170
 
164
171
  def raw_data=: (bool) -> bool
@@ -169,6 +176,7 @@ module Dataleon
169
176
  ?callback_url_notification: String,
170
177
  ?filtering_score_aml_suspicions: Float,
171
178
  ?language: String,
179
+ ?portal_steps: ::Array[Dataleon::Models::IndividualCreateParams::TechnicalData::portal_step],
172
180
  ?raw_data: bool
173
181
  ) -> void
174
182
 
@@ -178,8 +186,28 @@ module Dataleon
178
186
  callback_url_notification: String,
179
187
  filtering_score_aml_suspicions: Float,
180
188
  language: String,
189
+ portal_steps: ::Array[Dataleon::Models::IndividualCreateParams::TechnicalData::portal_step],
181
190
  raw_data: bool
182
191
  }
192
+
193
+ type portal_step =
194
+ :identity_verification
195
+ | :document_signing
196
+ | :proof_of_address
197
+ | :selfie
198
+ | :face_match
199
+
200
+ module PortalStep
201
+ extend Dataleon::Internal::Type::Enum
202
+
203
+ IDENTITY_VERIFICATION: :identity_verification
204
+ DOCUMENT_SIGNING: :document_signing
205
+ PROOF_OF_ADDRESS: :proof_of_address
206
+ SELFIE: :selfie
207
+ FACE_MATCH: :face_match
208
+
209
+ def self?.values: -> ::Array[Dataleon::Models::IndividualCreateParams::TechnicalData::portal_step]
210
+ end
183
211
  end
184
212
  end
185
213
  end
@@ -135,6 +135,7 @@ module Dataleon
135
135
  callback_url_notification: String,
136
136
  filtering_score_aml_suspicions: Float,
137
137
  language: String,
138
+ portal_steps: ::Array[Dataleon::Models::IndividualUpdateParams::TechnicalData::portal_step],
138
139
  raw_data: bool
139
140
  }
140
141
 
@@ -159,6 +160,12 @@ module Dataleon
159
160
 
160
161
  def language=: (String) -> String
161
162
 
163
+ attr_reader portal_steps: ::Array[Dataleon::Models::IndividualUpdateParams::TechnicalData::portal_step]?
164
+
165
+ def portal_steps=: (
166
+ ::Array[Dataleon::Models::IndividualUpdateParams::TechnicalData::portal_step]
167
+ ) -> ::Array[Dataleon::Models::IndividualUpdateParams::TechnicalData::portal_step]
168
+
162
169
  attr_reader raw_data: bool?
163
170
 
164
171
  def raw_data=: (bool) -> bool
@@ -169,6 +176,7 @@ module Dataleon
169
176
  ?callback_url_notification: String,
170
177
  ?filtering_score_aml_suspicions: Float,
171
178
  ?language: String,
179
+ ?portal_steps: ::Array[Dataleon::Models::IndividualUpdateParams::TechnicalData::portal_step],
172
180
  ?raw_data: bool
173
181
  ) -> void
174
182
 
@@ -178,8 +186,28 @@ module Dataleon
178
186
  callback_url_notification: String,
179
187
  filtering_score_aml_suspicions: Float,
180
188
  language: String,
189
+ portal_steps: ::Array[Dataleon::Models::IndividualUpdateParams::TechnicalData::portal_step],
181
190
  raw_data: bool
182
191
  }
192
+
193
+ type portal_step =
194
+ :identity_verification
195
+ | :document_signing
196
+ | :proof_of_address
197
+ | :selfie
198
+ | :face_match
199
+
200
+ module PortalStep
201
+ extend Dataleon::Internal::Type::Enum
202
+
203
+ IDENTITY_VERIFICATION: :identity_verification
204
+ DOCUMENT_SIGNING: :document_signing
205
+ PROOF_OF_ADDRESS: :proof_of_address
206
+ SELFIE: :selfie
207
+ FACE_MATCH: :face_match
208
+
209
+ def self?.values: -> ::Array[Dataleon::Models::IndividualUpdateParams::TechnicalData::portal_step]
210
+ end
183
211
  end
184
212
  end
185
213
  end