@@ -71,7 +71,6 @@ def create(
7171 risk_level : typing .Optional [RiskLevel ] = OMIT ,
7272 kyc_risk_level : typing .Optional [RiskLevel ] = OMIT ,
7373 allowed_payment_methods : typing .Optional [typing .Sequence [PaymentMethod ]] = OMIT ,
74- last_transaction_timestamp : typing .Optional [float ] = OMIT ,
7574 linked_entities : typing .Optional [UserEntityLink ] = OMIT ,
7675 acquisition_channel : typing .Optional [AcquisitionChannel ] = OMIT ,
7776 saved_payment_details : typing .Optional [typing .Sequence [BusinessSavedPaymentDetailsItem ]] = OMIT ,
@@ -80,7 +79,6 @@ def create(
8079 attachments : typing .Optional [typing .Sequence [PersonAttachment ]] = OMIT ,
8180 meta_data : typing .Optional [DeviceData ] = OMIT ,
8281 jurisdiction : typing .Optional [str ] = OMIT ,
83- update_count : typing .Optional [float ] = OMIT ,
8482 products_enabled : typing .Optional [typing .Sequence [ProductsEnabled ]] = OMIT ,
8583 pep_status : typing .Optional [typing .Sequence [PepStatus ]] = OMIT ,
8684 sanctions_status : typing .Optional [bool ] = OMIT ,
@@ -156,9 +154,6 @@ def create(
156154
157155 allowed_payment_methods : typing.Optional[typing.Sequence[PaymentMethod]]
158156
159- last_transaction_timestamp : typing.Optional[float]
160- Timestamp of the last successful transaction of the user
161-
162157 linked_entities : typing.Optional[UserEntityLink]
163158
164159 acquisition_channel : typing.Optional[AcquisitionChannel]
@@ -178,8 +173,6 @@ def create(
178173 jurisdiction : typing.Optional[str]
179174 Legal authority or region governing the transaction
180175
181- update_count : typing.Optional[float]
182-
183176 products_enabled : typing.Optional[typing.Sequence[ProductsEnabled]]
184177
185178 pep_status : typing.Optional[typing.Sequence[PepStatus]]
@@ -242,7 +235,6 @@ def create(
242235 risk_level = risk_level ,
243236 kyc_risk_level = kyc_risk_level ,
244237 allowed_payment_methods = allowed_payment_methods ,
245- last_transaction_timestamp = last_transaction_timestamp ,
246238 linked_entities = linked_entities ,
247239 acquisition_channel = acquisition_channel ,
248240 saved_payment_details = saved_payment_details ,
@@ -251,7 +243,6 @@ def create(
251243 attachments = attachments ,
252244 meta_data = meta_data ,
253245 jurisdiction = jurisdiction ,
254- update_count = update_count ,
255246 products_enabled = products_enabled ,
256247 pep_status = pep_status ,
257248 sanctions_status = sanctions_status ,
@@ -335,7 +326,6 @@ async def create(
335326 risk_level : typing .Optional [RiskLevel ] = OMIT ,
336327 kyc_risk_level : typing .Optional [RiskLevel ] = OMIT ,
337328 allowed_payment_methods : typing .Optional [typing .Sequence [PaymentMethod ]] = OMIT ,
338- last_transaction_timestamp : typing .Optional [float ] = OMIT ,
339329 linked_entities : typing .Optional [UserEntityLink ] = OMIT ,
340330 acquisition_channel : typing .Optional [AcquisitionChannel ] = OMIT ,
341331 saved_payment_details : typing .Optional [typing .Sequence [BusinessSavedPaymentDetailsItem ]] = OMIT ,
@@ -344,7 +334,6 @@ async def create(
344334 attachments : typing .Optional [typing .Sequence [PersonAttachment ]] = OMIT ,
345335 meta_data : typing .Optional [DeviceData ] = OMIT ,
346336 jurisdiction : typing .Optional [str ] = OMIT ,
347- update_count : typing .Optional [float ] = OMIT ,
348337 products_enabled : typing .Optional [typing .Sequence [ProductsEnabled ]] = OMIT ,
349338 pep_status : typing .Optional [typing .Sequence [PepStatus ]] = OMIT ,
350339 sanctions_status : typing .Optional [bool ] = OMIT ,
@@ -420,9 +409,6 @@ async def create(
420409
421410 allowed_payment_methods : typing.Optional[typing.Sequence[PaymentMethod]]
422411
423- last_transaction_timestamp : typing.Optional[float]
424- Timestamp of the last successful transaction of the user
425-
426412 linked_entities : typing.Optional[UserEntityLink]
427413
428414 acquisition_channel : typing.Optional[AcquisitionChannel]
@@ -442,8 +428,6 @@ async def create(
442428 jurisdiction : typing.Optional[str]
443429 Legal authority or region governing the transaction
444430
445- update_count : typing.Optional[float]
446-
447431 products_enabled : typing.Optional[typing.Sequence[ProductsEnabled]]
448432
449433 pep_status : typing.Optional[typing.Sequence[PepStatus]]
@@ -514,7 +498,6 @@ async def main() -> None:
514498 risk_level = risk_level ,
515499 kyc_risk_level = kyc_risk_level ,
516500 allowed_payment_methods = allowed_payment_methods ,
517- last_transaction_timestamp = last_transaction_timestamp ,
518501 linked_entities = linked_entities ,
519502 acquisition_channel = acquisition_channel ,
520503 saved_payment_details = saved_payment_details ,
@@ -523,7 +506,6 @@ async def main() -> None:
523506 attachments = attachments ,
524507 meta_data = meta_data ,
525508 jurisdiction = jurisdiction ,
526- update_count = update_count ,
527509 products_enabled = products_enabled ,
528510 pep_status = pep_status ,
529511 sanctions_status = sanctions_status ,
0 commit comments