@@ -6103,6 +6103,75 @@ object SwaggerDefinitionsJSON {
61036103 List (counterpartyAttributeResponseJsonV600)
61046104 )
61056105
6106+ lazy val postCustomerLinkJsonV600 = PostCustomerLinkJsonV600 (
6107+ customer_id = customerIdExample.value,
6108+ other_bank_id = bankIdExample.value,
6109+ other_customer_id = customerIdExample.value,
6110+ relationship_to = " spouse"
6111+ )
6112+
6113+ lazy val putCustomerLinkJsonV600 = PutCustomerLinkJsonV600 (
6114+ relationship_to = " close_associate"
6115+ )
6116+
6117+ lazy val customerLinkJsonV600 = CustomerLinkJsonV600 (
6118+ customer_link_id = " 613c83ea-80f9-4560-8404-b9cd4ec42a7f" ,
6119+ bank_id = bankIdExample.value,
6120+ customer_id = customerIdExample.value,
6121+ other_bank_id = bankIdExample.value,
6122+ other_customer_id = customerIdExample.value,
6123+ relationship_to = " spouse" ,
6124+ date_inserted = DateWithDayExampleObject ,
6125+ date_updated = DateWithDayExampleObject
6126+ )
6127+
6128+ lazy val customerLinksJsonV600 = CustomerLinksJsonV600 (
6129+ List (customerLinkJsonV600)
6130+ )
6131+
6132+ lazy val investigationTransactionJsonV600 = InvestigationTransactionJsonV600 (
6133+ transaction_id = transactionIdExample.value,
6134+ account_id = accountIdExample.value,
6135+ amount = " 1250" ,
6136+ currency = currencyExample.value,
6137+ transaction_type = " DEBIT" ,
6138+ description = " Payment for consulting services" ,
6139+ start_date = DateWithDayExampleObject ,
6140+ finish_date = DateWithDayExampleObject ,
6141+ counterparty_name = " ACME Corp" ,
6142+ counterparty_account = " DE89370400440532013000" ,
6143+ counterparty_bank_name = " Deutsche Bank"
6144+ )
6145+
6146+ lazy val investigationAccountJsonV600 = InvestigationAccountJsonV600 (
6147+ account_id = accountIdExample.value,
6148+ bank_id = bankIdExample.value,
6149+ currency = currencyExample.value,
6150+ balance = " 150000" ,
6151+ account_name = " Current Account" ,
6152+ account_type = " CURRENT" ,
6153+ transactions = List (investigationTransactionJsonV600)
6154+ )
6155+
6156+ lazy val investigationCustomerLinkJsonV600 = InvestigationCustomerLinkJsonV600 (
6157+ customer_link_id = " 613c83ea-80f9-4560-8404-b9cd4ec42a7f" ,
6158+ other_customer_id = customerIdExample.value,
6159+ other_bank_id = bankIdExample.value,
6160+ relationship = " spouse" ,
6161+ other_legal_name = " Jane Doe"
6162+ )
6163+
6164+ lazy val investigationReportJsonV600 = InvestigationReportJsonV600 (
6165+ customer_id = customerIdExample.value,
6166+ legal_name = " John Doe" ,
6167+ bank_id = bankIdExample.value,
6168+ accounts = List (investigationAccountJsonV600),
6169+ related_customers = List (investigationCustomerLinkJsonV600),
6170+ from_date = DateWithDayExampleObject ,
6171+ to_date = DateWithDayExampleObject ,
6172+ data_source = " mapped_database"
6173+ )
6174+
61066175 lazy val bankAccountBalanceRequestJsonV510 = BankAccountBalanceRequestJsonV510 (
61076176 balance_type = balanceTypeExample.value,
61086177 balance_amount = balanceAmountExample.value
0 commit comments