From 232dd475c712457b0f29e0a766c6dd2f63679380 Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Mon, 4 Dec 2023 11:46:44 +0100 Subject: [PATCH 01/28] feat: Add Block Blob Storage upload --- pom.xml | 4 + .../gpd/upload/controller/BaseController.java | 1 - .../gpd/upload/controller/FileController.java | 20 +- .../repository/BlobStorageRepository.java | 88 +- .../gpd/upload/repository/FileRepository.java | 5 +- .../gpd/upload/service/FileUploadService.java | 10 +- src/main/resources/application.properties | 8 +- src/test/resources/application.properties | 3 + src/test/resources/test.json | 51800 ++++++++++++++++ 9 files changed, 51915 insertions(+), 24 deletions(-) create mode 100644 src/test/resources/application.properties create mode 100644 src/test/resources/test.json diff --git a/pom.xml b/pom.xml index 844e715..15e6f0a 100644 --- a/pom.xml +++ b/pom.xml @@ -87,6 +87,10 @@ jackson-datatype-jsr310 2.13.4 + + com.azure + azure-storage-blob + diff --git a/src/main/java/it/gov/pagopa/gpd/upload/controller/BaseController.java b/src/main/java/it/gov/pagopa/gpd/upload/controller/BaseController.java index df490d2..818b966 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/controller/BaseController.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/controller/BaseController.java @@ -38,7 +38,6 @@ public HttpResponse base(){ return HttpResponse.seeOther(UriBuilder.of("/swagger-ui/").build()); } - @Operation(summary = "health check", description = "Return OK if application is started", security = {@SecurityRequirement(name = "ApiKey")}, tags = {"Base"}) @ApiResponses(value = { @ApiResponse(responseCode = "200", description = "OK", content = @Content(mediaType = MediaType.APPLICATION_JSON, schema = @Schema(implementation = AppInfo.class))), diff --git a/src/main/java/it/gov/pagopa/gpd/upload/controller/FileController.java b/src/main/java/it/gov/pagopa/gpd/upload/controller/FileController.java index 0a222d4..7095c53 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/controller/FileController.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/controller/FileController.java @@ -1,24 +1,23 @@ package it.gov.pagopa.gpd.upload.controller; -import com.fasterxml.jackson.databind.ObjectMapper; -import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule; import io.micronaut.http.HttpResponse; import io.micronaut.http.HttpStatus; import io.micronaut.http.MediaType; import io.micronaut.http.annotation.Consumes; import io.micronaut.http.annotation.Controller; +import io.micronaut.http.annotation.PathVariable; import io.micronaut.http.annotation.Post; import io.micronaut.http.multipart.CompletedFileUpload; import io.micronaut.scheduling.TaskExecutors; import io.micronaut.scheduling.annotation.ExecuteOn; -import it.gov.pagopa.gpd.upload.repository.BlobStorageRepository; +import io.swagger.v3.oas.annotations.Parameter; +import it.gov.pagopa.gpd.upload.service.FileUploadService; import jakarta.inject.Inject; +import jakarta.validation.constraints.NotBlank; import lombok.extern.slf4j.Slf4j; import java.io.IOException; -import java.net.URI; -import java.util.logging.Logger; @ExecuteOn(TaskExecutors.IO) @Controller() @@ -26,13 +25,14 @@ public class FileController { @Inject - BlobStorageRepository blobStorageRepository; + FileUploadService fileUploadService; @Consumes(MediaType.MULTIPART_FORM_DATA) - @Post("/debtpositions/file") - public HttpResponse uploadDebtPositionFile(CompletedFileUpload file) throws IOException { - log.info("A file with name: " + file.getFilename() + " has been uploaded"); - String key = blobStorageRepository.upload(file); + @Post("/organizations/{organizationfiscalcode}/debtpositions/file") + public HttpResponse uploadDebtPositionFile(@Parameter(description = "The organization fiscal code", required = true) + @NotBlank @PathVariable String organizationfiscalcode, CompletedFileUpload file) throws IOException { + String key = fileUploadService.upload(organizationfiscalcode, file); + log.debug("A file with name: " + file.getFilename() + " has been uploaded"); return HttpResponse.status(HttpStatus.OK).body(key); } diff --git a/src/main/java/it/gov/pagopa/gpd/upload/repository/BlobStorageRepository.java b/src/main/java/it/gov/pagopa/gpd/upload/repository/BlobStorageRepository.java index d478053..b257144 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/repository/BlobStorageRepository.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/repository/BlobStorageRepository.java @@ -1,12 +1,41 @@ package it.gov.pagopa.gpd.upload.repository; +import com.azure.storage.blob.BlobContainerClient; +import com.azure.storage.blob.BlobServiceClient; +import com.azure.storage.blob.BlobServiceClientBuilder; +import com.azure.storage.blob.specialized.BlockBlobClient; +import io.micronaut.context.annotation.Context; +import io.micronaut.context.annotation.Value; import io.micronaut.http.multipart.CompletedFileUpload; +import jakarta.annotation.PostConstruct; import jakarta.inject.Singleton; +import java.io.*; import java.net.URL; +import java.util.ArrayList; +import java.util.Base64; +import java.util.UUID; +@Context @Singleton public class BlobStorageRepository implements FileRepository { + + @Value("${blob.sas.url}") + private String blobURL; + + @Value("${blob.sas.token}") + private String blobToken; + + private BlobServiceClient blobServiceClient; + + @PostConstruct + public void init() { + blobServiceClient = new BlobServiceClientBuilder() + .endpoint(blobURL) + .sasToken(blobToken) + .buildClient(); + } + @Override public boolean doesObjectExists(String key) { return false; @@ -23,7 +52,62 @@ public URL findURLbyKey(String key) { } @Override - public String upload(CompletedFileUpload file) { - return null; + public String upload(String directory, CompletedFileUpload file) throws FileNotFoundException { + String key = this.createRandomName(directory); + BlobContainerClient container = blobServiceClient.getBlobContainerClient("input/inbox"); + BlockBlobClient blockBlobClient = container + .getBlobClient(key) + .getBlockBlobClient(); + + try { + this.uploadFileBlocksAsBlockBlob(blockBlobClient, file); + return key; + } catch (IOException e) { + throw new RuntimeException(e); + } + } + + private String createRandomName(String namePrefix) { + return namePrefix + UUID.randomUUID().toString().replace("-", ""); + } + + private void uploadFileBlocksAsBlockBlob(BlockBlobClient blockBlob, CompletedFileUpload file) throws IOException { + InputStream inputStream = file.getInputStream(); + ByteArrayInputStream byteInputStream = null; + byte[] bytes = null; + int blockSize = 1024 * 1024; + try { + // Split the file into 1 MB blocks (block size deliberately kept small for the demo) and upload all the blocks + int blockNum = 0; + String blockId = null; + String blockIdEncoded = null; + ArrayList blockList = new ArrayList(); + bytes = inputStream.readNBytes(blockSize); + while (bytes.length == blockSize) { + byteInputStream = new ByteArrayInputStream(bytes); + blockId = String.format("%05d", blockNum); + blockIdEncoded = Base64.getEncoder().encodeToString(blockId.getBytes()); + blockBlob.stageBlock(blockIdEncoded, byteInputStream, blockSize); + blockList.add(blockIdEncoded); + blockNum++; + bytes = inputStream.readNBytes(blockSize); + } + blockId = String.format("%05d", blockNum); + blockIdEncoded = Base64.getEncoder().encodeToString(blockId.getBytes()); + byteInputStream = new ByteArrayInputStream(bytes); + blockBlob.stageBlock(blockIdEncoded, byteInputStream, bytes.length); + blockList.add(blockIdEncoded); + + // Commit the blocks + blockBlob.commitBlockList(blockList); + } finally { + // Close the file output stream writer + if (inputStream != null) { + inputStream.close(); + } + if (byteInputStream != null) { + byteInputStream.close(); + } + } } } diff --git a/src/main/java/it/gov/pagopa/gpd/upload/repository/FileRepository.java b/src/main/java/it/gov/pagopa/gpd/upload/repository/FileRepository.java index f8e2825..e40141b 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/repository/FileRepository.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/repository/FileRepository.java @@ -2,6 +2,7 @@ import io.micronaut.http.multipart.CompletedFileUpload; +import java.io.IOException; import java.net.URL; public interface FileRepository { @@ -12,5 +13,5 @@ public interface FileRepository { URL findURLbyKey(String key); - String upload(CompletedFileUpload file); -} \ No newline at end of file + String upload(String directory, CompletedFileUpload file) throws IOException; +} diff --git a/src/main/java/it/gov/pagopa/gpd/upload/service/FileUploadService.java b/src/main/java/it/gov/pagopa/gpd/upload/service/FileUploadService.java index d98709a..31ee4f2 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/service/FileUploadService.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/service/FileUploadService.java @@ -5,12 +5,7 @@ import jakarta.inject.Inject; import jakarta.inject.Singleton; -import java.io.File; -import java.io.FileOutputStream; import java.io.IOException; -import java.io.InputStream; -import java.util.zip.ZipEntry; -import java.util.zip.ZipInputStream; @Singleton public class FileUploadService { @@ -18,8 +13,7 @@ public class FileUploadService { @Inject BlobStorageRepository blobStorageRepository; - public String upload(CompletedFileUpload file) throws IOException { - blobStorageRepository.upload(file); - return null; + public String upload(String organizationFiscalCode, CompletedFileUpload file) throws IOException { + return blobStorageRepository.upload(organizationFiscalCode, file); } } diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index e29c3a0..ef87705 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -5,4 +5,10 @@ micronaut.application.name=GPD-Massive-Upload-service micronaut.router.static-resources.swagger.paths=classpath:META-INF/swagger micronaut.router.static-resources.swagger.mapping=/swagger/** micronaut.router.static-resources.swagger-ui.paths=classpath:META-INF/swagger/views/swagger-ui -micronaut.router.static-resources.swagger-ui.mapping=/swagger-ui/** \ No newline at end of file +micronaut.router.static-resources.swagger-ui.mapping=/swagger-ui/** +micronaut.server.multipart.maxFileSize=1048576000 +micronaut.server.max-request-size=1048576000 +micronaut.server.max-request-size.multipart.max-file-size=1048576000 + +blob.sas.url=${blob_sas_url} +blob.sas.token=${blob_sas_token} diff --git a/src/test/resources/application.properties b/src/test/resources/application.properties new file mode 100644 index 0000000..8300ce3 --- /dev/null +++ b/src/test/resources/application.properties @@ -0,0 +1,3 @@ +info.application.artifactId=gpd-massive-upload +info.application.version=v0.0.1 +info.properties.environment=local diff --git a/src/test/resources/test.json b/src/test/resources/test.json new file mode 100644 index 0000000..92f08d9 --- /dev/null +++ b/src/test/resources/test.json @@ -0,0 +1,51800 @@ +{ + "paymentPositions": [ + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + }, + { + "iupd": "string", + "type": "F", + "fiscalCode": "string", + "fullName": "string", + "streetName": "string", + "civicNumber": "string", + "postalCode": "string", + "city": "string", + "province": "string", + "region": "string", + "country": "IT", + "email": "string@string.com", + "phone": "string", + "switchToExpired": false, + "companyName": "string", + "officeName": "string", + "validityDate": "2023-10-14T14:07:00.205Z", + "paymentOption": [ + { + "iuv": "string", + "amount": 0, + "description": "string", + "isPartialPayment": true, + "dueDate": "2023-10-14T14:07:00.205Z", + "retentionDate": "2023-10-14T14:07:00.205Z", + "fee": 0, + "transfer": [ + { + "idTransfer": "1", + "amount": 0, + "organizationFiscalCode": "00000000000", + "remittanceInformation": "string", + "category": "string", + "iban": "IT0000000000000000000000000", + "postalIban": "IT0000000000000000000000000", + "stamp": { + "hashDocument": "string", + "stampType": "st", + "provincialResidence": "RM" + } + } + ] + } + ] + } + ] +} From 8e2f1ef2b169c7e1aa293f12497dcca3cd81de6d Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Tue, 5 Dec 2023 16:15:30 +0100 Subject: [PATCH 02/28] feat: Add unzip, validation and Status --- Dockerfile | 33 ++-- helm/values-dev.yaml | 8 +- pom.xml | 10 ++ .../gpd/upload/controller/FileController.java | 35 +++- .../gov/pagopa/gpd/upload/entity/Status.java | 14 ++ .../gov/pagopa/gpd/upload/entity/Upload.java | 23 +++ .../pagopa/gpd/upload/model/FileStatus.java | 18 ++ .../model/pd/PaymentOptionMetadataModel.java | 22 +++ .../upload/model/pd/PaymentOptionModel.java | 69 ++++++++ .../upload/model/pd/PaymentPositionModel.java | 73 +++++++++ .../model/pd/PaymentPositionsModel.java | 24 +++ .../gov/pagopa/gpd/upload/model/pd/Stamp.java | 34 ++++ .../model/pd/TransferMetadataModel.java | 24 +++ .../gpd/upload/model/pd/TransferModel.java | 63 +++++++ .../pd/enumeration/DebtPositionStatus.java | 40 +++++ .../pd/enumeration/PaymentOptionStatus.java | 5 + .../model/pd/enumeration/TransferStatus.java | 5 + .../gpd/upload/model/pd/enumeration/Type.java | 5 + .../repository/BlobStorageRepository.java | 25 ++- .../gpd/upload/repository/FileRepository.java | 5 +- .../upload/repository/StatusRepository.java | 62 +++++++ .../gpd/upload/service/FileStatusService.java | 50 ++++++ .../gpd/upload/service/FileUploadService.java | 155 +++++++++++++++++- src/main/resources/application.properties | 11 +- .../resources/example-file-status-model.json | 12 ++ .../example-upload-status-entity.json | 11 ++ 26 files changed, 786 insertions(+), 50 deletions(-) create mode 100644 src/main/java/it/gov/pagopa/gpd/upload/entity/Status.java create mode 100644 src/main/java/it/gov/pagopa/gpd/upload/entity/Upload.java create mode 100644 src/main/java/it/gov/pagopa/gpd/upload/model/FileStatus.java create mode 100644 src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentOptionMetadataModel.java create mode 100644 src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentOptionModel.java create mode 100644 src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentPositionModel.java create mode 100644 src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentPositionsModel.java create mode 100644 src/main/java/it/gov/pagopa/gpd/upload/model/pd/Stamp.java create mode 100644 src/main/java/it/gov/pagopa/gpd/upload/model/pd/TransferMetadataModel.java create mode 100644 src/main/java/it/gov/pagopa/gpd/upload/model/pd/TransferModel.java create mode 100644 src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/DebtPositionStatus.java create mode 100644 src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/PaymentOptionStatus.java create mode 100644 src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/TransferStatus.java create mode 100644 src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/Type.java create mode 100644 src/main/java/it/gov/pagopa/gpd/upload/repository/StatusRepository.java create mode 100644 src/main/java/it/gov/pagopa/gpd/upload/service/FileStatusService.java create mode 100644 src/test/resources/example-file-status-model.json create mode 100644 src/test/resources/example-upload-status-entity.json diff --git a/Dockerfile b/Dockerfile index 65e6a12..bb2b956 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,27 +1,16 @@ # -# Build +# Build stage # -FROM maven:3.8.4-jdk-11-slim as buildtime -WORKDIR /build -COPY . . -RUN mvn clean package +FROM maven:3.8.2-openjdk-17-slim AS build +COPY src /home/app/src +COPY pom.xml /home/app +RUN mvn -f /home/app/pom.xml clean package -Dmaven.test.skip=true - -FROM adoptopenjdk/openjdk11:alpine-jre as builder -COPY --from=buildtime /build/target/*.jar application.jar -RUN java -Djarmode=layertools -jar application.jar extract - - -FROM ghcr.io/pagopa/docker-base-springboot-openjdk11:v1.0.1@sha256:bbbe948e91efa0a3e66d8f308047ec255f64898e7f9250bdb63985efd3a95dbf -ADD --chown=spring:spring https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v1.25.1/opentelemetry-javaagent.jar . - -COPY --chown=spring:spring --from=builder dependencies/ ./ -COPY --chown=spring:spring --from=builder snapshot-dependencies/ ./ -# https://github.com/moby/moby/issues/37965#issuecomment-426853382 +# +# Package stage +# +FROM openjdk:17-alpine +COPY --from=build /home/app/target/pagopa-gpd-upload*.jar /usr/local/lib/app.jar RUN true -COPY --chown=spring:spring --from=builder spring-boot-loader/ ./ -COPY --chown=spring:spring --from=builder application/ ./ - EXPOSE 8080 - -ENTRYPOINT ["java","-javaagent:opentelemetry-javaagent.jar","--enable-preview","org.springframework.boot.loader.JarLauncher"] +ENTRYPOINT ["java","-jar","/usr/local/lib/app.jar"] diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index ec62f6d..d3d1807 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -29,8 +29,8 @@ microservice-chart: - 8080 ingress: create: true - host: "your.host" # TODO: set the host - path: /your-path-here/(.*) # TODO: set your path + host: "weudev.gps.internal.dev.platform.pagopa.it" + path: /pagopa-gpd-upload/(.*) servicePort: 8080 serviceAccount: create: false @@ -80,8 +80,10 @@ microservice-chart: # required APPLICATIONINSIGHTS_CONNECTION_STRING: 'ai-d-connection-string' OTEL_EXPORTER_OTLP_HEADERS: elastic-apm-secret-token + BLOB_SAS_URL: gpd-upload-blob-sas-url + BLOB_SAS_TOKEN: gpd-upload-blob-sas-token keyvault: - name: "pagopa-d-name-kv" #TODO + name: "pagopa-d-gps-kv" tenantId: "7788edaf-0346-4068-9d79-c868aed15b3d" nodeSelector: { } tolerations: [ ] diff --git a/pom.xml b/pom.xml index 15e6f0a..503b48b 100644 --- a/pom.xml +++ b/pom.xml @@ -91,6 +91,16 @@ com.azure azure-storage-blob + + com.azure + azure-cosmos + 4.41.0 + + + jakarta.validation + jakarta.validation-api + compile + diff --git a/src/main/java/it/gov/pagopa/gpd/upload/controller/FileController.java b/src/main/java/it/gov/pagopa/gpd/upload/controller/FileController.java index 7095c53..4cd3e3b 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/controller/FileController.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/controller/FileController.java @@ -3,14 +3,13 @@ import io.micronaut.http.HttpResponse; import io.micronaut.http.HttpStatus; import io.micronaut.http.MediaType; -import io.micronaut.http.annotation.Consumes; -import io.micronaut.http.annotation.Controller; -import io.micronaut.http.annotation.PathVariable; -import io.micronaut.http.annotation.Post; +import io.micronaut.http.annotation.*; import io.micronaut.http.multipart.CompletedFileUpload; import io.micronaut.scheduling.TaskExecutors; import io.micronaut.scheduling.annotation.ExecuteOn; import io.swagger.v3.oas.annotations.Parameter; +import it.gov.pagopa.gpd.upload.model.FileStatus; +import it.gov.pagopa.gpd.upload.service.FileStatusService; import it.gov.pagopa.gpd.upload.service.FileUploadService; import jakarta.inject.Inject; import jakarta.validation.constraints.NotBlank; @@ -27,13 +26,33 @@ public class FileController { @Inject FileUploadService fileUploadService; + @Inject + FileStatusService fileStatusService; + @Consumes(MediaType.MULTIPART_FORM_DATA) - @Post("/organizations/{organizationfiscalcode}/debtpositions/file") + @Post("/organizations/{organizationFiscalCode}/debtpositions/file") public HttpResponse uploadDebtPositionFile(@Parameter(description = "The organization fiscal code", required = true) - @NotBlank @PathVariable String organizationfiscalcode, CompletedFileUpload file) throws IOException { - String key = fileUploadService.upload(organizationfiscalcode, file); + @NotBlank @PathVariable String organizationFiscalCode, CompletedFileUpload file) throws IOException { + String key = fileUploadService.upload(organizationFiscalCode, file); log.debug("A file with name: " + file.getFilename() + " has been uploaded"); - return HttpResponse.status(HttpStatus.OK).body(key); + return HttpResponse.status(HttpStatus.OK) + .body(key); } + + @Get(value = "/organizations/{organizationFiscalCode}/debtpositions/file/{fileId}/status", + produces = MediaType.APPLICATION_JSON) + HttpResponse getFileSatus( + @Parameter(description = "The organization fiscal code", required = true) + @NotBlank @PathVariable String organizationFiscalCode, + @Parameter(description = "The fiscal code of the Organization.", required = true) + @NotBlank @PathVariable String fileId) { + + FileStatus fileStatus = fileStatusService.getStatus(fileId); + log.debug("The Status related to file-id " + fileId + " has been found"); + + return HttpResponse.status(HttpStatus.OK) + .body(fileStatus); + } + } diff --git a/src/main/java/it/gov/pagopa/gpd/upload/entity/Status.java b/src/main/java/it/gov/pagopa/gpd/upload/entity/Status.java new file mode 100644 index 0000000..274dfd8 --- /dev/null +++ b/src/main/java/it/gov/pagopa/gpd/upload/entity/Status.java @@ -0,0 +1,14 @@ +package it.gov.pagopa.gpd.upload.entity; + +import lombok.*; + +@Builder(toBuilder = true) +@Getter +@Setter +@NoArgsConstructor +@AllArgsConstructor +public class Status { + public String id; + public String fiscalCode; + public Upload upload; +} diff --git a/src/main/java/it/gov/pagopa/gpd/upload/entity/Upload.java b/src/main/java/it/gov/pagopa/gpd/upload/entity/Upload.java new file mode 100644 index 0000000..fa0a866 --- /dev/null +++ b/src/main/java/it/gov/pagopa/gpd/upload/entity/Upload.java @@ -0,0 +1,23 @@ +package it.gov.pagopa.gpd.upload.entity; + +import com.fasterxml.jackson.annotation.JsonFormat; +import lombok.*; + +import java.time.LocalDateTime; +import java.util.ArrayList; + +@Builder(toBuilder = true) +@Getter +@Setter +@NoArgsConstructor +@AllArgsConstructor +public class Upload { + private int current; + private int total; + private ArrayList successIUPD; + private ArrayList failedIUPD; + @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss") + private LocalDateTime start; + @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss") + private LocalDateTime end; +} diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/FileStatus.java b/src/main/java/it/gov/pagopa/gpd/upload/model/FileStatus.java new file mode 100644 index 0000000..4b69fd9 --- /dev/null +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/FileStatus.java @@ -0,0 +1,18 @@ +package it.gov.pagopa.gpd.upload.model; + +import lombok.*; + +import java.time.LocalDateTime; +import java.util.ArrayList; + +@Builder(toBuilder = true) +@Getter +@Setter +@NoArgsConstructor +@AllArgsConstructor +public class FileStatus { + public String fileId; + private ArrayList successIUPD; + private ArrayList failedIUPD; + private LocalDateTime uploadTime; +} diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentOptionMetadataModel.java b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentOptionMetadataModel.java new file mode 100644 index 0000000..60adba1 --- /dev/null +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentOptionMetadataModel.java @@ -0,0 +1,22 @@ +package it.gov.pagopa.gpd.upload.model.pd; + +import jakarta.validation.constraints.NotBlank; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.io.Serializable; + +@Data +@NoArgsConstructor +public class PaymentOptionMetadataModel implements Serializable { + + /** + * generated serialVersionUID + */ + private static final long serialVersionUID = 4575041445781686511L; + + @NotBlank(message = "key is required") + private String key; + + private String value; +} diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentOptionModel.java b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentOptionModel.java new file mode 100644 index 0000000..2c10c1a --- /dev/null +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentOptionModel.java @@ -0,0 +1,69 @@ +package it.gov.pagopa.gpd.upload.model.pd; + +import io.swagger.v3.oas.annotations.media.Schema; +import jakarta.validation.Valid; +import jakarta.validation.constraints.NotBlank; +import jakarta.validation.constraints.NotNull; +import jakarta.validation.constraints.Size; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.io.Serializable; +import java.time.LocalDateTime; +import java.util.ArrayList; +import java.util.List; + +import com.fasterxml.jackson.annotation.JsonProperty; + + +@Data +@NoArgsConstructor +public class PaymentOptionModel implements Serializable { + + /** + * generated serialVersionUID + */ + private static final long serialVersionUID = -8328320637402363721L; + + @JsonProperty(access = JsonProperty.Access.READ_ONLY) + private String nav; + @NotBlank(message = "iuv is required") + private String iuv; + @NotNull(message = "amount is required") + private Long amount; + private String description; + @NotNull(message = "is partial payment is required") + private Boolean isPartialPayment; + @NotNull(message = "due date is required") + private LocalDateTime dueDate; + private LocalDateTime retentionDate; + private long fee; + + @JsonProperty(access = JsonProperty.Access.READ_ONLY) + @Schema(accessMode = Schema.AccessMode.READ_ONLY) + private long notificationFee; + + @Valid + private List transfer = new ArrayList<>(); + + @Valid + @Size(min=0, max=10) + @Schema(description = "it can added a maximum of 10 key-value pairs for metadata") + private List paymentOptionMetadata = new ArrayList<>(); + + public void addTransfers(TransferModel trans) { + transfer.add(trans); + } + + public void removeTransfers(TransferModel trans) { + transfer.remove(trans); + } + + public void addPaymentOptionMetadata(PaymentOptionMetadataModel paymentOptMetadata) { + paymentOptionMetadata.add(paymentOptMetadata); + } + + public void removePaymentOptionMetadata(PaymentOptionMetadataModel paymentOptMetadata) { + paymentOptionMetadata.remove(paymentOptMetadata); + } +} diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentPositionModel.java b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentPositionModel.java new file mode 100644 index 0000000..f19b60c --- /dev/null +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentPositionModel.java @@ -0,0 +1,73 @@ +package it.gov.pagopa.gpd.upload.model.pd; + +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.annotation.JsonProperty.Access; +import io.swagger.v3.oas.annotations.media.Schema; +import it.gov.pagopa.gpd.upload.model.pd.enumeration.DebtPositionStatus; +import it.gov.pagopa.gpd.upload.model.pd.enumeration.Type; +import jakarta.validation.Valid; +import jakarta.validation.constraints.Email; +import jakarta.validation.constraints.NotBlank; +import jakarta.validation.constraints.NotNull; +import jakarta.validation.constraints.Pattern; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.io.Serializable; +import java.time.LocalDateTime; +import java.util.ArrayList; +import java.util.List; + +@Data +@NoArgsConstructor +public class PaymentPositionModel implements Serializable { + + /** + * generated serialVersionUID + */ + private static final long serialVersionUID = 1509046053787358148L; + + + @NotBlank(message = "iupd is required") + private String iupd; + @NotNull(message = "type is required") + private Type type; + @NotBlank(message = "fiscal code is required") + private String fiscalCode; + @NotBlank(message = "full name is required") + private String fullName; + private String streetName; + private String civicNumber; + private String postalCode; + private String city; + private String province; + private String region; + @Pattern(regexp="[A-Z]{2}", message="The country must be reported with two capital letters (example: IT)") + private String country; + @Email(message = "Please provide a valid email address") + private String email; + private String phone; + @Schema(description = "feature flag to enable the debt position to expire after the due date", example = "false", defaultValue = "false") + private Boolean switchToExpired; + + // Payment Position properties + @NotBlank(message = "company name is required") + private String companyName; // es. Comune di Roma + private String officeName; // es. Ufficio Tributi + private LocalDateTime validityDate; + @JsonProperty(access = Access.READ_ONLY) + private LocalDateTime paymentDate; + @JsonProperty(access = Access.READ_ONLY) + private DebtPositionStatus status; + + @Valid + private List paymentOption = new ArrayList<>(); + + public void addPaymentOptions(PaymentOptionModel paymentOpt) { + paymentOption.add(paymentOpt); + } + + public void removePaymentOptions(PaymentOptionModel paymentOpt) { + paymentOption.remove(paymentOpt); + } +} diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentPositionsModel.java b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentPositionsModel.java new file mode 100644 index 0000000..c5ae10a --- /dev/null +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentPositionsModel.java @@ -0,0 +1,24 @@ +package it.gov.pagopa.gpd.upload.model.pd; + +import io.micronaut.core.annotation.Introspected; +import jakarta.validation.Valid; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; +import lombok.experimental.SuperBuilder; + +import java.util.List; + +@SuperBuilder(toBuilder = true) +@NoArgsConstructor +@AllArgsConstructor +@Data +@Introspected +public class PaymentPositionsModel { + @Valid + private List<@Valid PaymentPositionModel> paymentPositions; + + public @Valid List<@Valid PaymentPositionModel> getPaymentPositions() { + return this.paymentPositions; + } +} diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/Stamp.java b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/Stamp.java new file mode 100644 index 0000000..9965caf --- /dev/null +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/Stamp.java @@ -0,0 +1,34 @@ +package it.gov.pagopa.gpd.upload.model.pd; + +import io.swagger.v3.oas.annotations.media.Schema; +import jakarta.validation.constraints.NotBlank; +import jakarta.validation.constraints.Pattern; +import jakarta.validation.constraints.Size; +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.io.Serializable; + +@Data +@Builder +@NoArgsConstructor +@AllArgsConstructor +public class Stamp implements Serializable { + private static final long serialVersionUID = -5862140737726963810L; + + @NotBlank + @Schema(required = true, description = "Document hash") + private String hashDocument; + + @NotBlank + @Size(min = 2, max = 2) + @Schema(required = true, description = "The type of the stamp", minLength = 2, maxLength = 2) + private String stampType; + + @NotBlank + @Pattern(regexp = "[A-Z]{2}") + @Schema(required = true, description = "The provincial of the residence", example = "RM", pattern = "[A-Z]{2,2}") + private String provincialResidence; +} diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/TransferMetadataModel.java b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/TransferMetadataModel.java new file mode 100644 index 0000000..8df44b6 --- /dev/null +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/TransferMetadataModel.java @@ -0,0 +1,24 @@ +package it.gov.pagopa.gpd.upload.model.pd; + +import jakarta.validation.constraints.NotBlank; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.io.Serializable; + +@Data +@NoArgsConstructor +public class TransferMetadataModel implements Serializable { + + + /** + * generated serialVersionUID + */ + private static final long serialVersionUID = -1509450417943158597L; + + @NotBlank(message = "key is required") + private String key; + + private String value; + +} diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/TransferModel.java b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/TransferModel.java new file mode 100644 index 0000000..5b2f9a5 --- /dev/null +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/TransferModel.java @@ -0,0 +1,63 @@ +package it.gov.pagopa.gpd.upload.model.pd; + +import io.swagger.v3.oas.annotations.media.Schema; +import jakarta.validation.Valid; +import jakarta.validation.constraints.NotBlank; +import jakarta.validation.constraints.NotNull; +import jakarta.validation.constraints.Size; +import lombok.Data; +import lombok.NoArgsConstructor; + + +import java.io.Serializable; +import java.util.ArrayList; +import java.util.List; + +@Data +@NoArgsConstructor +public class TransferModel implements Serializable { + + /** + * generated serialVersionUID + */ + private static final long serialVersionUID = 5593063492841435180L; + + @NotBlank(message = "id transfer is required") + @Schema(type = "string", allowableValues = {"1", "2", "3", "4", "5"}) + private String idTransfer; + + @NotNull(message = "amount is required") + private Long amount; + + @Schema(description = "Fiscal code related to the organization targeted by this transfer.", example = "00000000000") + private String organizationFiscalCode; + + @NotBlank(message = "remittance information is required") + private String remittanceInformation; // causale + + @NotBlank(message = "category is required") + private String category; // taxonomy + + @Schema(description = "mutual exclusive with postalIban and stamp", example = "IT0000000000000000000000000") + private String iban; + + @Schema(description = "mutual exclusive with iban and stamp", example = "IT0000000000000000000000000") + private String postalIban; + + @Schema(description = "mutual exclusive with iban and postalIban") + private Stamp stamp; + + @Valid + @Size(min=0, max=10) + @Schema(description = "it can added a maximum of 10 key-value pairs for metadata") + private List transferMetadata = new ArrayList<>(); + + public void addTransferMetadata(TransferMetadataModel trans) { + transferMetadata.add(trans); + } + + public void removeTransferMetadata(TransferMetadataModel trans) { + transferMetadata.remove(trans); + } + +} diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/DebtPositionStatus.java b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/DebtPositionStatus.java new file mode 100644 index 0000000..eb1e08b --- /dev/null +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/DebtPositionStatus.java @@ -0,0 +1,40 @@ +package it.gov.pagopa.gpd.upload.model.pd.enumeration; + +import java.util.EnumSet; +import java.util.Set; + +public enum DebtPositionStatus { + DRAFT, PUBLISHED, VALID, INVALID, EXPIRED, PARTIALLY_PAID, PAID, REPORTED; + + public static Set getPaymentPosNotYetPaidStatus() { + return EnumSet.of(DRAFT, PUBLISHED, VALID, INVALID, EXPIRED); + } + + public static Set getPaymentPosAlreadyPaidStatus() { + return EnumSet.complementOf((EnumSet) getPaymentPosNotYetPaidStatus()); + } + + public static Set getPaymentPosNotUpdatableStatus() { + return EnumSet.of(INVALID, EXPIRED, PARTIALLY_PAID, PAID, REPORTED); + } + + public static Set getPaymentPosNotPublishableStatus() { + return EnumSet.of(PUBLISHED, VALID, INVALID, EXPIRED, PARTIALLY_PAID, PAID, REPORTED); + } + + public static Set getPaymentPosNotIvalidableStatus() { + return EnumSet.of(DRAFT, INVALID, EXPIRED, PARTIALLY_PAID, PAID, REPORTED); + } + + public static Set getPaymentPosNotPayableStatus() { + return EnumSet.of(DRAFT, PUBLISHED, INVALID, EXPIRED); + } + + public static Set getPaymentPosFullyPaidStatus() { + return EnumSet.of(PAID, REPORTED); + } + + public static Set getPaymentPosNotAccountableStatus() { + return EnumSet.of(DRAFT, PUBLISHED, VALID, INVALID, EXPIRED, REPORTED); + } +} diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/PaymentOptionStatus.java b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/PaymentOptionStatus.java new file mode 100644 index 0000000..f0d9437 --- /dev/null +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/PaymentOptionStatus.java @@ -0,0 +1,5 @@ +package it.gov.pagopa.gpd.upload.model.pd.enumeration; + +public enum PaymentOptionStatus { + PO_UNPAID, PO_PAID, PO_PARTIALLY_REPORTED, PO_REPORTED +} diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/TransferStatus.java b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/TransferStatus.java new file mode 100644 index 0000000..1b8c838 --- /dev/null +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/TransferStatus.java @@ -0,0 +1,5 @@ +package it.gov.pagopa.gpd.upload.model.pd.enumeration; + +public enum TransferStatus { + T_UNREPORTED, T_REPORTED +} diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/Type.java b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/Type.java new file mode 100644 index 0000000..8c6ffb5 --- /dev/null +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/Type.java @@ -0,0 +1,5 @@ +package it.gov.pagopa.gpd.upload.model.pd.enumeration; + +public enum Type { + F, G +} diff --git a/src/main/java/it/gov/pagopa/gpd/upload/repository/BlobStorageRepository.java b/src/main/java/it/gov/pagopa/gpd/upload/repository/BlobStorageRepository.java index b257144..62c9d77 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/repository/BlobStorageRepository.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/repository/BlobStorageRepository.java @@ -1,14 +1,15 @@ package it.gov.pagopa.gpd.upload.repository; +import com.azure.storage.blob.BlobClient; import com.azure.storage.blob.BlobContainerClient; import com.azure.storage.blob.BlobServiceClient; import com.azure.storage.blob.BlobServiceClientBuilder; import com.azure.storage.blob.specialized.BlockBlobClient; import io.micronaut.context.annotation.Context; import io.micronaut.context.annotation.Value; -import io.micronaut.http.multipart.CompletedFileUpload; import jakarta.annotation.PostConstruct; import jakarta.inject.Singleton; +import lombok.extern.slf4j.Slf4j; import java.io.*; import java.net.URL; @@ -18,6 +19,7 @@ @Context @Singleton +@Slf4j public class BlobStorageRepository implements FileRepository { @Value("${blob.sas.url}") @@ -52,12 +54,17 @@ public URL findURLbyKey(String key) { } @Override - public String upload(String directory, CompletedFileUpload file) throws FileNotFoundException { + public String upload(String directory, File file) throws FileNotFoundException { + BlobContainerClient container = blobServiceClient.getBlobContainerClient("input/" + directory); String key = this.createRandomName(directory); - BlobContainerClient container = blobServiceClient.getBlobContainerClient("input/inbox"); - BlockBlobClient blockBlobClient = container - .getBlobClient(key) - .getBlockBlobClient(); + BlobClient blobClient = container.getBlobClient(key); + // retry in case of pseudo random collision + while (blobClient.exists()) { + key = this.createRandomName(directory); + blobClient = container.getBlobClient(key); + } + + BlockBlobClient blockBlobClient = blobClient.getBlockBlobClient(); try { this.uploadFileBlocksAsBlockBlob(blockBlobClient, file); @@ -68,11 +75,11 @@ public String upload(String directory, CompletedFileUpload file) throws FileNotF } private String createRandomName(String namePrefix) { - return namePrefix + UUID.randomUUID().toString().replace("-", ""); + return namePrefix + "_" + UUID.randomUUID().toString().replace("-", ""); } - private void uploadFileBlocksAsBlockBlob(BlockBlobClient blockBlob, CompletedFileUpload file) throws IOException { - InputStream inputStream = file.getInputStream(); + private void uploadFileBlocksAsBlockBlob(BlockBlobClient blockBlob, File file) throws IOException { + InputStream inputStream = new FileInputStream(file); ByteArrayInputStream byteInputStream = null; byte[] bytes = null; int blockSize = 1024 * 1024; diff --git a/src/main/java/it/gov/pagopa/gpd/upload/repository/FileRepository.java b/src/main/java/it/gov/pagopa/gpd/upload/repository/FileRepository.java index e40141b..056f92e 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/repository/FileRepository.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/repository/FileRepository.java @@ -1,7 +1,6 @@ package it.gov.pagopa.gpd.upload.repository; -import io.micronaut.http.multipart.CompletedFileUpload; - +import java.io.File; import java.io.IOException; import java.net.URL; @@ -13,5 +12,5 @@ public interface FileRepository { URL findURLbyKey(String key); - String upload(String directory, CompletedFileUpload file) throws IOException; + String upload(String directory, File file) throws IOException; } diff --git a/src/main/java/it/gov/pagopa/gpd/upload/repository/StatusRepository.java b/src/main/java/it/gov/pagopa/gpd/upload/repository/StatusRepository.java new file mode 100644 index 0000000..335949f --- /dev/null +++ b/src/main/java/it/gov/pagopa/gpd/upload/repository/StatusRepository.java @@ -0,0 +1,62 @@ +package it.gov.pagopa.gpd.upload.repository; + +import com.azure.cosmos.CosmosClientBuilder; +import com.azure.cosmos.CosmosClient; +import com.azure.cosmos.CosmosContainer; +import com.azure.cosmos.models.CosmosItemResponse; +import com.azure.cosmos.models.PartitionKey; +import io.micronaut.context.annotation.Context; +import io.micronaut.context.annotation.Value; +import io.micronaut.http.HttpStatus; +import it.gov.pagopa.gpd.upload.entity.Status; +import it.gov.pagopa.gpd.upload.exception.AppException; +import jakarta.annotation.PostConstruct; +import jakarta.inject.Singleton; +import lombok.extern.slf4j.Slf4j; + +@Singleton +@Context +@Slf4j +public class StatusRepository { + + @Value("${cosmos.uri}") + private String cosmosURI; + + @Value("${cosmos.key}") + private String cosmosKey; + + @Value("${cosmos.database.name}") + private String databaseName; + + @Value("${cosmos.container.name}") + private String containerName; + + private CosmosClient cosmosClient; + private CosmosContainer container; + + @PostConstruct + public void init() { + cosmosClient = new CosmosClientBuilder() + .endpoint(cosmosURI) + .key(cosmosKey) + .buildClient(); + container = cosmosClient.getDatabase(databaseName).getContainer(containerName); + } + + public Status saveStatus(Status status) { + CosmosItemResponse response = container.createItem(status); + if (response.getStatusCode() != HttpStatus.CREATED.getCode()) { + log.error("the Status saving was not successful: " + response); + } + return response.getItem(); + } + + public Status findStatusById(String id) { + CosmosItemResponse response = container.readItem(id, PartitionKey.NONE, Status.class); + if (response.getStatusCode() != HttpStatus.OK.getCode()) { + log.error("the Status retrieval was not successful: " + response); + throw new AppException(HttpStatus.valueOf(response.getStatusCode()), response.getETag(), "the Status retrieval was not successful"); + } + return response.getItem(); + } +} diff --git a/src/main/java/it/gov/pagopa/gpd/upload/service/FileStatusService.java b/src/main/java/it/gov/pagopa/gpd/upload/service/FileStatusService.java new file mode 100644 index 0000000..43ab302 --- /dev/null +++ b/src/main/java/it/gov/pagopa/gpd/upload/service/FileStatusService.java @@ -0,0 +1,50 @@ +package it.gov.pagopa.gpd.upload.service; + +import it.gov.pagopa.gpd.upload.entity.Status; +import it.gov.pagopa.gpd.upload.entity.Upload; +import it.gov.pagopa.gpd.upload.model.FileStatus; +import it.gov.pagopa.gpd.upload.model.pd.PaymentPositionsModel; +import it.gov.pagopa.gpd.upload.repository.StatusRepository; +import jakarta.inject.Inject; +import jakarta.inject.Singleton; +import lombok.extern.slf4j.Slf4j; + +import java.time.LocalDateTime; +import java.util.ArrayList; + +@Singleton +@Slf4j +public class FileStatusService { + @Inject + StatusRepository statusRepository; + + public FileStatus getStatus(String fileId) { + return map(statusRepository.findStatusById(fileId)); + } + + public Status createUploadStatus(String organizationFiscalCode,String fileId, PaymentPositionsModel paymentPositionsModel) { + Upload upload = Upload.builder() + .current(0) + .total(paymentPositionsModel.getPaymentPositions().size()) + .successIUPD(new ArrayList<>()) + .failedIUPD(new ArrayList<>()) + .start(LocalDateTime.now()) + .build(); + Status status = Status.builder() + .id(fileId) + .fiscalCode(organizationFiscalCode) + .upload(upload) + .build(); + + return statusRepository.saveStatus(status); + } + + private FileStatus map(Status status) { + return FileStatus.builder() + .fileId(status.id) + .successIUPD(status.upload.getSuccessIUPD()) + .failedIUPD(status.upload.getFailedIUPD()) + .uploadTime(status.upload.getStart()) + .build(); + } +} diff --git a/src/main/java/it/gov/pagopa/gpd/upload/service/FileUploadService.java b/src/main/java/it/gov/pagopa/gpd/upload/service/FileUploadService.java index 31ee4f2..b796121 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/service/FileUploadService.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/service/FileUploadService.java @@ -1,19 +1,168 @@ package it.gov.pagopa.gpd.upload.service; +import com.azure.storage.blob.BlobServiceClientBuilder; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule; +import io.micronaut.context.annotation.Context; +import io.micronaut.context.annotation.Value; +import io.micronaut.http.HttpStatus; import io.micronaut.http.multipart.CompletedFileUpload; +import it.gov.pagopa.gpd.upload.exception.AppException; +import it.gov.pagopa.gpd.upload.model.pd.PaymentPositionsModel; import it.gov.pagopa.gpd.upload.repository.BlobStorageRepository; +import jakarta.annotation.PostConstruct; import jakarta.inject.Inject; import jakarta.inject.Singleton; -import java.io.IOException; +import java.io.*; +import java.util.Arrays; +import java.util.List; +import java.util.Set; +import java.util.zip.ZipEntry; +import java.util.zip.ZipInputStream; + +import jakarta.validation.ConstraintViolation; +import jakarta.validation.Validator; +import lombok.extern.slf4j.Slf4j; @Singleton +@Context +@Slf4j public class FileUploadService { + @Value("${zip.content.size}") + private int zipMaxSize; // Max size of zip file content + + @Value("${zip.entries}") + private int zipMaxEntries; // Maximum number of entries allowed in the zip file + + private static List ALLOWABLE_EXTENSIONS = Arrays.asList("json"); + + private ObjectMapper objectMapper; + @Inject BlobStorageRepository blobStorageRepository; - public String upload(String organizationFiscalCode, CompletedFileUpload file) throws IOException { - return blobStorageRepository.upload(organizationFiscalCode, file); + @Inject + FileStatusService fileStatusService; + + @Inject + Validator validator; + + @PostConstruct + public void init() { + objectMapper = new ObjectMapper(); + objectMapper.registerModule(new JavaTimeModule()); + } + + public String upload(String organizationFiscalCode, CompletedFileUpload fileUpload) throws IOException { + File file = unzip(fileUpload); + log.debug("File with name " + file.getName() + " has been unzipped"); + PaymentPositionsModel paymentPositionsModel = objectMapper.readValue(new FileInputStream(file), PaymentPositionsModel.class); + if(!isValid(file.getName(), paymentPositionsModel)) { + throw new AppException(HttpStatus.BAD_REQUEST, "INVALID DEBT POSITIONS", "The format of the debt positions in the uploaded file are invalid."); + } + String fileId = blobStorageRepository.upload(organizationFiscalCode, file); + fileStatusService.createUploadStatus(organizationFiscalCode, fileId, paymentPositionsModel); + + return fileId; + } + + private boolean isValid(String id, PaymentPositionsModel paymentPositionsModel) throws IOException { + log.debug("Starting validation for object related to" + id); + Set> constraintViolations = validator.validate(paymentPositionsModel); + log.debug("Validation result for object related to " + id + ": " + constraintViolations.toString()); + + return constraintViolations.isEmpty(); + } + + private File unzip(CompletedFileUpload file) { + String destinationDirectory = "./"; + int zipFiles = 0; + int zipSize = 0; + File outputFile = null; + final byte[] buffer = new byte[1024]; + + try { + ZipInputStream zis = new ZipInputStream(file.getInputStream()); + + ZipEntry entry = zis.getNextEntry(); + while (entry != null) { + zipFiles++; + if (zipFiles > zipMaxEntries) { + zis.closeEntry(); + zis.close(); + log.error("Zip content has too many entries"); + throw new AppException(HttpStatus.BAD_REQUEST, "", "Zip content has too many entries (check for hidden files)"); + } + + if (!entry.isDirectory()) { + String fileName = entry.getName(); + + // Validate file extension against whitelist + if (!ALLOWABLE_EXTENSIONS.contains(getFileExtension(fileName))) { + continue; + } + + // Sanitize file name to remove potentially malicious characters + String sanitizedFileName = sanitizeFileName(fileName); + String sanitizedOutputPath = destinationDirectory + File.separator + sanitizedFileName; + + // Disable auto-execution for extracted files + outputFile = new File(sanitizedOutputPath); + outputFile.setExecutable(false); + + final FileOutputStream fos = new FileOutputStream(outputFile); + int len; + while ((len = zis.read(buffer)) > 0) { + zipSize += len; + if(zipSize > zipMaxSize) { + zis.closeEntry(); + zis.close(); + fos.close(); + log.error("Zip content too large"); + throw new AppException(HttpStatus.BAD_REQUEST, "", "Zip content too large"); + } + + fos.write(buffer, 0, len); + } + fos.close(); + } + entry = zis.getNextEntry(); + } + zis.closeEntry(); + zis.close(); + + return outputFile; + } catch (IOException e) { + throw new RuntimeException(e); + } + } + + public static String getFileExtension(String fileName) { + if (fileName == null || fileName.isEmpty()) { + return ""; + } + + int dotIndex = fileName.lastIndexOf('.'); + if (dotIndex == -1) { + return ""; + } + + return fileName.substring(dotIndex + 1); + } + + public static String sanitizeFileName(String fileName) { + if (fileName == null || fileName.isEmpty()) { + return ""; + } + + // Replace invalid characters with underscores + fileName = fileName.replaceAll("[^\\w\\._-]", "_"); + + // Normalize file name to lower case + fileName = fileName.toLowerCase(); + + return fileName; } } diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index ef87705..3a7b995 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -10,5 +10,12 @@ micronaut.server.multipart.maxFileSize=1048576000 micronaut.server.max-request-size=1048576000 micronaut.server.max-request-size.multipart.max-file-size=1048576000 -blob.sas.url=${blob_sas_url} -blob.sas.token=${blob_sas_token} +blob.sas.url=${BLOB_SAS_URL} +blob.sas.token=${BLOB_SAS_TOKEN} +zip.content.size=104857600 +zip.entries=1 + +cosmos.uri=${COSMOS_URI} +cosmos.key=${COSMOS_KEY} +cosmos.database.name=${DB_NAME} +cosmos.container.name=${CONTAINER_NAME} diff --git a/src/test/resources/example-file-status-model.json b/src/test/resources/example-file-status-model.json new file mode 100644 index 0000000..d415ebe --- /dev/null +++ b/src/test/resources/example-file-status-model.json @@ -0,0 +1,12 @@ +{ + "file-id": "UPLOAD_123456789" + "success-IUPD": [ + "IUPD-XDUF-JKZP-6V28", + "IUPD-XDUF-JKZP-6V44" + ], + "failed-IUPD": [ + "IUPD-XDUF-JKZP-6V66", + "IUPD-XDUF-JKZP-6V94" + ], + "upload_time": "2023-12-24 09:55:22" +} diff --git a/src/test/resources/example-upload-status-entity.json b/src/test/resources/example-upload-status-entity.json new file mode 100644 index 0000000..3e06f71 --- /dev/null +++ b/src/test/resources/example-upload-status-entity.json @@ -0,0 +1,11 @@ +{ + "file-id": "UPLOAD_87817231263913", + "upload": { + "current": 6, + "total": 1000, + "success-IUPD": ["string", "string", "string"], + "failed-IUPD": ["string", "string", "string"], + "start-time": "yyyy-MM-dd:HH:mm:SSS", + "end-time": "yyyy-MM-dd:HH:mm:SSS" + } +} From 4e92873aa2333579bb9c398f0277ee4720a42bf9 Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Wed, 6 Dec 2023 16:24:06 +0100 Subject: [PATCH 03/28] refactoring --- pom.xml | 11 ++++++ .../gpd/upload/exception/ErrorHandler.java | 6 +++- .../model/pd/PaymentOptionMetadataModel.java | 8 +++++ .../upload/model/pd/PaymentOptionModel.java | 8 +++++ .../upload/model/pd/PaymentPositionModel.java | 8 +++++ .../gov/pagopa/gpd/upload/model/pd/Stamp.java | 2 ++ .../model/pd/TransferMetadataModel.java | 8 +++++ .../gpd/upload/model/pd/TransferModel.java | 8 +++++ .../pd/enumeration/DebtPositionStatus.java | 3 ++ .../pd/enumeration/PaymentOptionStatus.java | 3 ++ .../model/pd/enumeration/TransferStatus.java | 3 ++ .../gpd/upload/model/pd/enumeration/Type.java | 3 ++ .../repository/BlobStorageRepository.java | 16 +++++---- .../upload/repository/StatusRepository.java | 3 +- .../gpd/upload/service/FileStatusService.java | 2 +- .../gpd/upload/service/FileUploadService.java | 36 ++++++++++++++----- src/main/resources/application.properties | 2 ++ 17 files changed, 112 insertions(+), 18 deletions(-) diff --git a/pom.xml b/pom.xml index 503b48b..8ecb88a 100644 --- a/pom.xml +++ b/pom.xml @@ -145,6 +145,17 @@ + + io.micronaut.validation + micronaut-validation-processor + ${micronaut.validation.version} + + + io.micronaut + micronaut-inject + + + io.micronaut.serde micronaut-serde-processor diff --git a/src/main/java/it/gov/pagopa/gpd/upload/exception/ErrorHandler.java b/src/main/java/it/gov/pagopa/gpd/upload/exception/ErrorHandler.java index cf1c6dd..7e9709c 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/exception/ErrorHandler.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/exception/ErrorHandler.java @@ -7,14 +7,18 @@ import io.micronaut.http.server.exceptions.ExceptionHandler; import it.gov.pagopa.gpd.upload.model.ProblemJson; import jakarta.inject.Singleton; +import lombok.extern.slf4j.Slf4j; @Produces @Singleton @Requires(classes = {AppException.class, ExceptionHandler.class}) +@Slf4j public class ErrorHandler implements ExceptionHandler { @Override public HttpResponse handle(HttpRequest request, AppException exception) { + log.error("[ERROR] AppException raised: ", exception); + ProblemJson errorResponse = ProblemJson.builder() .status(exception.getHttpStatus().getCode()) .title(exception.getTitle()) @@ -24,4 +28,4 @@ public HttpResponse handle(HttpRequest request, AppException exception) { .status(exception.getHttpStatus()) .body(errorResponse); } -} \ No newline at end of file +} diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentOptionMetadataModel.java b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentOptionMetadataModel.java index 60adba1..c543765 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentOptionMetadataModel.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentOptionMetadataModel.java @@ -1,13 +1,21 @@ package it.gov.pagopa.gpd.upload.model.pd; +import io.micronaut.core.annotation.Introspected; import jakarta.validation.constraints.NotBlank; +import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; +import lombok.ToString; +import lombok.experimental.SuperBuilder; import java.io.Serializable; @Data +@SuperBuilder(toBuilder = true) @NoArgsConstructor +@AllArgsConstructor +@ToString +@Introspected public class PaymentOptionMetadataModel implements Serializable { /** diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentOptionModel.java b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentOptionModel.java index 2c10c1a..7714be0 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentOptionModel.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentOptionModel.java @@ -1,10 +1,12 @@ package it.gov.pagopa.gpd.upload.model.pd; +import io.micronaut.core.annotation.Introspected; import io.swagger.v3.oas.annotations.media.Schema; import jakarta.validation.Valid; import jakarta.validation.constraints.NotBlank; import jakarta.validation.constraints.NotNull; import jakarta.validation.constraints.Size; +import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; @@ -14,10 +16,16 @@ import java.util.List; import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.ToString; +import lombok.experimental.SuperBuilder; @Data +@SuperBuilder(toBuilder = true) @NoArgsConstructor +@AllArgsConstructor +@ToString +@Introspected public class PaymentOptionModel implements Serializable { /** diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentPositionModel.java b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentPositionModel.java index f19b60c..a52ca65 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentPositionModel.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/PaymentPositionModel.java @@ -2,6 +2,7 @@ import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonProperty.Access; +import io.micronaut.core.annotation.Introspected; import io.swagger.v3.oas.annotations.media.Schema; import it.gov.pagopa.gpd.upload.model.pd.enumeration.DebtPositionStatus; import it.gov.pagopa.gpd.upload.model.pd.enumeration.Type; @@ -10,8 +11,11 @@ import jakarta.validation.constraints.NotBlank; import jakarta.validation.constraints.NotNull; import jakarta.validation.constraints.Pattern; +import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; +import lombok.ToString; +import lombok.experimental.SuperBuilder; import java.io.Serializable; import java.time.LocalDateTime; @@ -19,7 +23,11 @@ import java.util.List; @Data +@SuperBuilder(toBuilder = true) @NoArgsConstructor +@AllArgsConstructor +@ToString +@Introspected public class PaymentPositionModel implements Serializable { /** diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/Stamp.java b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/Stamp.java index 9965caf..f1375cb 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/Stamp.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/Stamp.java @@ -1,5 +1,6 @@ package it.gov.pagopa.gpd.upload.model.pd; +import io.micronaut.core.annotation.Introspected; import io.swagger.v3.oas.annotations.media.Schema; import jakarta.validation.constraints.NotBlank; import jakarta.validation.constraints.Pattern; @@ -15,6 +16,7 @@ @Builder @NoArgsConstructor @AllArgsConstructor +@Introspected public class Stamp implements Serializable { private static final long serialVersionUID = -5862140737726963810L; diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/TransferMetadataModel.java b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/TransferMetadataModel.java index 8df44b6..62e09d8 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/TransferMetadataModel.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/TransferMetadataModel.java @@ -1,13 +1,21 @@ package it.gov.pagopa.gpd.upload.model.pd; +import io.micronaut.core.annotation.Introspected; import jakarta.validation.constraints.NotBlank; +import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; +import lombok.ToString; +import lombok.experimental.SuperBuilder; import java.io.Serializable; @Data +@SuperBuilder(toBuilder = true) @NoArgsConstructor +@AllArgsConstructor +@ToString +@Introspected public class TransferMetadataModel implements Serializable { diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/TransferModel.java b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/TransferModel.java index 5b2f9a5..5f3c422 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/TransferModel.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/TransferModel.java @@ -1,12 +1,16 @@ package it.gov.pagopa.gpd.upload.model.pd; +import io.micronaut.core.annotation.Introspected; import io.swagger.v3.oas.annotations.media.Schema; import jakarta.validation.Valid; import jakarta.validation.constraints.NotBlank; import jakarta.validation.constraints.NotNull; import jakarta.validation.constraints.Size; +import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; +import lombok.ToString; +import lombok.experimental.SuperBuilder; import java.io.Serializable; @@ -14,7 +18,11 @@ import java.util.List; @Data +@SuperBuilder(toBuilder = true) @NoArgsConstructor +@AllArgsConstructor +@ToString +@Introspected public class TransferModel implements Serializable { /** diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/DebtPositionStatus.java b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/DebtPositionStatus.java index eb1e08b..8cadae4 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/DebtPositionStatus.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/DebtPositionStatus.java @@ -1,8 +1,11 @@ package it.gov.pagopa.gpd.upload.model.pd.enumeration; +import io.micronaut.core.annotation.Introspected; + import java.util.EnumSet; import java.util.Set; +@Introspected public enum DebtPositionStatus { DRAFT, PUBLISHED, VALID, INVALID, EXPIRED, PARTIALLY_PAID, PAID, REPORTED; diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/PaymentOptionStatus.java b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/PaymentOptionStatus.java index f0d9437..71001f2 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/PaymentOptionStatus.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/PaymentOptionStatus.java @@ -1,5 +1,8 @@ package it.gov.pagopa.gpd.upload.model.pd.enumeration; +import io.micronaut.core.annotation.Introspected; + +@Introspected public enum PaymentOptionStatus { PO_UNPAID, PO_PAID, PO_PARTIALLY_REPORTED, PO_REPORTED } diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/TransferStatus.java b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/TransferStatus.java index 1b8c838..e092820 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/TransferStatus.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/TransferStatus.java @@ -1,5 +1,8 @@ package it.gov.pagopa.gpd.upload.model.pd.enumeration; +import io.micronaut.core.annotation.Introspected; + +@Introspected public enum TransferStatus { T_UNREPORTED, T_REPORTED } diff --git a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/Type.java b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/Type.java index 8c6ffb5..e04c8d5 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/Type.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/pd/enumeration/Type.java @@ -1,5 +1,8 @@ package it.gov.pagopa.gpd.upload.model.pd.enumeration; +import io.micronaut.core.annotation.Introspected; + +@Introspected public enum Type { F, G } diff --git a/src/main/java/it/gov/pagopa/gpd/upload/repository/BlobStorageRepository.java b/src/main/java/it/gov/pagopa/gpd/upload/repository/BlobStorageRepository.java index 62c9d77..92511da 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/repository/BlobStorageRepository.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/repository/BlobStorageRepository.java @@ -7,6 +7,8 @@ import com.azure.storage.blob.specialized.BlockBlobClient; import io.micronaut.context.annotation.Context; import io.micronaut.context.annotation.Value; +import io.micronaut.http.HttpStatus; +import it.gov.pagopa.gpd.upload.exception.AppException; import jakarta.annotation.PostConstruct; import jakarta.inject.Singleton; import lombok.extern.slf4j.Slf4j; @@ -54,13 +56,13 @@ public URL findURLbyKey(String key) { } @Override - public String upload(String directory, File file) throws FileNotFoundException { - BlobContainerClient container = blobServiceClient.getBlobContainerClient("input/" + directory); - String key = this.createRandomName(directory); + public String upload(String fiscalCode, File file) throws FileNotFoundException { + BlobContainerClient container = blobServiceClient.getBlobContainerClient("input/" + fiscalCode); + String key = this.createRandomName(fiscalCode); BlobClient blobClient = container.getBlobClient(key); // retry in case of pseudo random collision while (blobClient.exists()) { - key = this.createRandomName(directory); + key = this.createRandomName(fiscalCode); blobClient = container.getBlobClient(key); } @@ -70,7 +72,7 @@ public String upload(String directory, File file) throws FileNotFoundException { this.uploadFileBlocksAsBlockBlob(blockBlobClient, file); return key; } catch (IOException e) { - throw new RuntimeException(e); + throw new AppException(HttpStatus.INTERNAL_SERVER_ERROR, "INTERNAL_SERVER_ERROR", "Internal server error", e); } } @@ -92,7 +94,7 @@ private void uploadFileBlocksAsBlockBlob(BlockBlobClient blockBlob, File file) t bytes = inputStream.readNBytes(blockSize); while (bytes.length == blockSize) { byteInputStream = new ByteArrayInputStream(bytes); - blockId = String.format("%05d", blockNum); + blockId = String.format("%05d", blockNum); // 5-digit number blockIdEncoded = Base64.getEncoder().encodeToString(blockId.getBytes()); blockBlob.stageBlock(blockIdEncoded, byteInputStream, blockSize); blockList.add(blockIdEncoded); @@ -101,7 +103,7 @@ private void uploadFileBlocksAsBlockBlob(BlockBlobClient blockBlob, File file) t } blockId = String.format("%05d", blockNum); blockIdEncoded = Base64.getEncoder().encodeToString(blockId.getBytes()); - byteInputStream = new ByteArrayInputStream(bytes); + byteInputStream = new ByteArrayInputStream(bytes); // add last block based on remaining bytes blockBlob.stageBlock(blockIdEncoded, byteInputStream, bytes.length); blockList.add(blockIdEncoded); diff --git a/src/main/java/it/gov/pagopa/gpd/upload/repository/StatusRepository.java b/src/main/java/it/gov/pagopa/gpd/upload/repository/StatusRepository.java index 335949f..951c54a 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/repository/StatusRepository.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/repository/StatusRepository.java @@ -47,6 +47,7 @@ public Status saveStatus(Status status) { CosmosItemResponse response = container.createItem(status); if (response.getStatusCode() != HttpStatus.CREATED.getCode()) { log.error("the Status saving was not successful: " + response); + throw new AppException(HttpStatus.SERVICE_UNAVAILABLE, "COSMOS UNAVAILABLE", "the Status saving was not successful"); } return response.getItem(); } @@ -55,7 +56,7 @@ public Status findStatusById(String id) { CosmosItemResponse response = container.readItem(id, PartitionKey.NONE, Status.class); if (response.getStatusCode() != HttpStatus.OK.getCode()) { log.error("the Status retrieval was not successful: " + response); - throw new AppException(HttpStatus.valueOf(response.getStatusCode()), response.getETag(), "the Status retrieval was not successful"); + throw new AppException(HttpStatus.SERVICE_UNAVAILABLE, "COSMOS UNAVAILABLE", "the Status retrieval was not successful"); } return response.getItem(); } diff --git a/src/main/java/it/gov/pagopa/gpd/upload/service/FileStatusService.java b/src/main/java/it/gov/pagopa/gpd/upload/service/FileStatusService.java index 43ab302..ca34c75 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/service/FileStatusService.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/service/FileStatusService.java @@ -22,7 +22,7 @@ public FileStatus getStatus(String fileId) { return map(statusRepository.findStatusById(fileId)); } - public Status createUploadStatus(String organizationFiscalCode,String fileId, PaymentPositionsModel paymentPositionsModel) { + public Status createUploadStatus(String organizationFiscalCode, String fileId, PaymentPositionsModel paymentPositionsModel) { Upload upload = Upload.builder() .current(0) .total(paymentPositionsModel.getPaymentPositions().size()) diff --git a/src/main/java/it/gov/pagopa/gpd/upload/service/FileUploadService.java b/src/main/java/it/gov/pagopa/gpd/upload/service/FileUploadService.java index b796121..03026e2 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/service/FileUploadService.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/service/FileUploadService.java @@ -8,6 +8,7 @@ import io.micronaut.http.HttpStatus; import io.micronaut.http.multipart.CompletedFileUpload; import it.gov.pagopa.gpd.upload.exception.AppException; +import it.gov.pagopa.gpd.upload.model.pd.PaymentPositionModel; import it.gov.pagopa.gpd.upload.model.pd.PaymentPositionsModel; import it.gov.pagopa.gpd.upload.repository.BlobStorageRepository; import jakarta.annotation.PostConstruct; @@ -38,6 +39,8 @@ public class FileUploadService { private static List ALLOWABLE_EXTENSIONS = Arrays.asList("json"); + private static List VALID_UPLOAD_EXTENSION = Arrays.asList("zip"); + private ObjectMapper objectMapper; @Inject @@ -60,7 +63,8 @@ public String upload(String organizationFiscalCode, CompletedFileUpload fileUplo log.debug("File with name " + file.getName() + " has been unzipped"); PaymentPositionsModel paymentPositionsModel = objectMapper.readValue(new FileInputStream(file), PaymentPositionsModel.class); if(!isValid(file.getName(), paymentPositionsModel)) { - throw new AppException(HttpStatus.BAD_REQUEST, "INVALID DEBT POSITIONS", "The format of the debt positions in the uploaded file are invalid."); + log.error("Debt Positions validation failed for file " + file.getName()); + throw new AppException(HttpStatus.BAD_REQUEST, "INVALID DEBT POSITIONS", "The format of the debt positions in the uploaded file is invalid."); } String fileId = blobStorageRepository.upload(organizationFiscalCode, file); fileStatusService.createUploadStatus(organizationFiscalCode, fileId, paymentPositionsModel); @@ -70,10 +74,21 @@ public String upload(String organizationFiscalCode, CompletedFileUpload fileUplo private boolean isValid(String id, PaymentPositionsModel paymentPositionsModel) throws IOException { log.debug("Starting validation for object related to" + id); - Set> constraintViolations = validator.validate(paymentPositionsModel); - log.debug("Validation result for object related to " + id + ": " + constraintViolations.toString()); - - return constraintViolations.isEmpty(); + Set> constraintViolations; + + for(PaymentPositionModel paymentPositionModel : paymentPositionsModel.getPaymentPositions()) { + constraintViolations = validator.validate(paymentPositionsModel); + if(!constraintViolations.isEmpty()) { + log.error("Validation error for object related to " + id + ": " + paymentPositionModel); + for(ConstraintViolation cv : constraintViolations) { + log.error("Invalid value: " + cv.getMessage()); + log.error("Invalid value: " + cv.getConstraintDescriptor()); + log.error("Invalid value: " + cv.getInvalidValue()); + } + return false; + } + } + return true; } private File unzip(CompletedFileUpload file) { @@ -83,6 +98,11 @@ private File unzip(CompletedFileUpload file) { File outputFile = null; final byte[] buffer = new byte[1024]; + if(!VALID_UPLOAD_EXTENSION.contains(getFileExtension(file.getFilename()))) { + log.error("The file " + file.getFilename() + " with extension " + getFileExtension(file.getFilename()) + " is not a zip file "); + throw new AppException(HttpStatus.BAD_REQUEST, "NOT A ZIP FILE", "Only zip file can be uploaded."); + } + try { ZipInputStream zis = new ZipInputStream(file.getInputStream()); @@ -93,7 +113,7 @@ private File unzip(CompletedFileUpload file) { zis.closeEntry(); zis.close(); log.error("Zip content has too many entries"); - throw new AppException(HttpStatus.BAD_REQUEST, "", "Zip content has too many entries (check for hidden files)"); + throw new AppException(HttpStatus.BAD_REQUEST, "INVALID FILE", "Zip content has too many entries (check for hidden files)"); } if (!entry.isDirectory()) { @@ -121,7 +141,7 @@ private File unzip(CompletedFileUpload file) { zis.close(); fos.close(); log.error("Zip content too large"); - throw new AppException(HttpStatus.BAD_REQUEST, "", "Zip content too large"); + throw new AppException(HttpStatus.BAD_REQUEST, "INVALID FILE", "Zip content too large"); } fos.write(buffer, 0, len); @@ -135,7 +155,7 @@ private File unzip(CompletedFileUpload file) { return outputFile; } catch (IOException e) { - throw new RuntimeException(e); + throw new AppException(HttpStatus.INTERNAL_SERVER_ERROR, "INTERNAL SERVER ERROR", "Internal server error", e); } } diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 3a7b995..2b69595 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -19,3 +19,5 @@ cosmos.uri=${COSMOS_URI} cosmos.key=${COSMOS_KEY} cosmos.database.name=${DB_NAME} cosmos.container.name=${CONTAINER_NAME} + +log.level=${LOG_LEVEL} From 4f3f98939ee2ee1c5cb6ed37a97d13510c71ef6a Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Mon, 11 Dec 2023 14:46:48 +0100 Subject: [PATCH 04/28] feat: Update identity --- .github/workflows/release_deploy.yml | 3 +- .identity/.terraform.lock.hcl | 83 ++++++++ .identity/02_application_action.tf | 192 +++++++++--------- .identity/03_github_environment.tf | 2 +- .identity/04_github_identity.tf | 28 +++ .identity/99_variables.tf | 41 +++- .identity/env/dev/backend.tfvars | 2 +- .identity/env/dev/terraform.tfvars | 10 +- .../it/gov/pagopa/gpd/upload/BaseTest.java | 21 -- 9 files changed, 259 insertions(+), 123 deletions(-) create mode 100644 .identity/.terraform.lock.hcl create mode 100644 .identity/04_github_identity.tf delete mode 100644 src/test/java/it/gov/pagopa/gpd/upload/BaseTest.java diff --git a/.github/workflows/release_deploy.yml b/.github/workflows/release_deploy.yml index 3b72f7c..ea32ced 100644 --- a/.github/workflows/release_deploy.yml +++ b/.github/workflows/release_deploy.yml @@ -100,12 +100,13 @@ jobs: steps: - name: Make Release id: release - uses: pagopa/github-actions-template/maven-release@v1.6.8 + uses: pagopa/github-actions-template/maven-release@PAGOPA-1360-gpd-upload-service with: semver: ${{ needs.setup.outputs.semver }} github_token: ${{ secrets.BOT_TOKEN_GITHUB }} beta: ${{ inputs.beta }} skip_ci: false + jdk_version: 17 image: needs: [ setup, release ] diff --git a/.identity/.terraform.lock.hcl b/.identity/.terraform.lock.hcl new file mode 100644 index 0000000..80adf3c --- /dev/null +++ b/.identity/.terraform.lock.hcl @@ -0,0 +1,83 @@ +# This file is maintained automatically by "terraform init". +# Manual edits may be lost in future updates. + +provider "registry.terraform.io/hashicorp/azuread" { + version = "2.30.0" + constraints = "2.30.0" + hashes = [ + "h1:WnSPiREAFwnBUKREokMdHQ8Cjs47MzvS9pG8VS1ktec=", + "zh:1c3e89cf19118fc07d7b04257251fc9897e722c16e0a0df7b07fcd261f8c12e7", + "zh:2e62c193030e04ebb10cc0526119cf69824bf2d7e4ea5a2f45bd5d5fb7221d36", + "zh:2f3c7a35257332d68b778cefc5201a5f044e4914dd03794a4da662ddfe756483", + "zh:35d0d3a1b58fdb8b8c4462d6b7e7016042da43ea9cc734ce897f52a73407d9b0", + "zh:47ede0cd0206ec953d40bf4a80aa6e59af64e26cbbd877614ac424533dbb693b", + "zh:48c190307d4d42ea67c9b8cc544025024753f46cef6ea64db84735e7055a72da", + "zh:6fff9b2c6a962252a70a15b400147789ab369b35a781e9d21cce3804b04d29af", + "zh:7646980cf3438bff29c91ffedb74458febbb00a996638751fbd204ab1c628c9b", + "zh:77aa2fa7ca6d5446afa71d4ff83cb87b70a2f3b72110fc442c339e8e710b2928", + "zh:e20b2b2c37175b89dd0db058a096544d448032e28e3b56e2db368343533a9684", + "zh:eab175b1dfe9865ad9404dccb6d5542899f8c435095aa7c679314b811c717ce7", + "zh:efc862bd78c55d2ff089729e2a34c1831ab4b0644fc11b36ee4ebed00a4797ba", + ] +} + +provider "registry.terraform.io/hashicorp/azurerm" { + version = "3.45.0" + constraints = ">= 3.30.0, 3.45.0, <= 3.71.0" + hashes = [ + "h1:gQLNY1I5e9kcle1p/VYEWb0eteQ/t5kUfnqVu2/GBNY=", + "zh:04c5dbb8845366ce5eb0dc2d55e151270cc2c0ace20993867fdae9af43b953ad", + "zh:2589585da615ccae341400d45d672ee3fae413fdd88449b5befeff12a85a44b2", + "zh:603869ed98fff5d9bf841a51afd9e06b628533c59356c8433aef4b15df63f5f7", + "zh:853fecab9c987b6772c8d9aa10362675f6c626b60ebc7118aa33ce91366fcc38", + "zh:979848c45e8e058862c36ba3a661457f7c81ef26ebb6634f479600de9c203d65", + "zh:9b512c8588ecc9c1b803b746a3a8517422561a918f0dfb0faaa707ed53ef1760", + "zh:a9601ffb58043426bcff1220662d6d137f0b2857a24f2dcf180aeac2c9cea688", + "zh:d52d2652328f0ed3ba202561d88cb9f43c174edbfaab1abf69f772125dbfe15e", + "zh:d92d91ca597c47f575bf3ae129f4b723be9b7dcb71b906ec6ec740fac29b1aaa", + "zh:ded73b730e4197b70fda9e83447c119f92f75dc37be3ff2ed45730c8f0348c28", + "zh:ec37ac332d50f8ca5827f97198346b0f8ecbf470e2e3ba1e027bb389d826b902", + "zh:f569b65999264a9416862bca5cd2a6177d94ccb0424f3a4ef424428912b9cb3c", + ] +} + +provider "registry.terraform.io/hashicorp/null" { + version = "3.2.2" + hashes = [ + "h1:vWAsYRd7MjYr3adj8BVKRohVfHpWQdvkIwUQ2Jf5FVM=", + "zh:3248aae6a2198f3ec8394218d05bd5e42be59f43a3a7c0b71c66ec0df08b69e7", + "zh:32b1aaa1c3013d33c245493f4a65465eab9436b454d250102729321a44c8ab9a", + "zh:38eff7e470acb48f66380a73a5c7cdd76cc9b9c9ba9a7249c7991488abe22fe3", + "zh:4c2f1faee67af104f5f9e711c4574ff4d298afaa8a420680b0cb55d7bbc65606", + "zh:544b33b757c0b954dbb87db83a5ad921edd61f02f1dc86c6186a5ea86465b546", + "zh:696cf785090e1e8cf1587499516b0494f47413b43cb99877ad97f5d0de3dc539", + "zh:6e301f34757b5d265ae44467d95306d61bef5e41930be1365f5a8dcf80f59452", + "zh:78d5eefdd9e494defcb3c68d282b8f96630502cac21d1ea161f53cfe9bb483b3", + "zh:913a929070c819e59e94bb37a2a253c228f83921136ff4a7aa1a178c7cce5422", + "zh:aa9015926cd152425dbf86d1abdbc74bfe0e1ba3d26b3db35051d7b9ca9f72ae", + "zh:bb04798b016e1e1d49bcc76d62c53b56c88c63d6f2dfe38821afef17c416a0e1", + "zh:c23084e1b23577de22603cff752e59128d83cfecc2e6819edadd8cf7a10af11e", + ] +} + +provider "registry.terraform.io/integrations/github" { + version = "5.18.3" + constraints = "5.18.3" + hashes = [ + "h1:rv3mwpUeJ0n13sY+KZMI25WAVCSeipX4n8JMWKD1XcE=", + "zh:050b37d96628cb7451137755929ca8d21ea546bc46d11a715652584070e83ff2", + "zh:053051061f1b7f7673b0ceffac1f239ba28b0e5b375999206fd39976e85d9f2b", + "zh:0c300a977ca66d0347ed62bb116fd8fc9abb376a554d4c192d14f3ea71c83500", + "zh:1d5a1a5243eba78819d2f92ff2d504ebf9a9008a6670fb5f5660f44eb6a156d8", + "zh:a13ac15d251ebf4e7dc40acb0e40df066f443f4c7799186a29e2e44addc7d8e7", + "zh:a316d94b885953c036ebc9fba64a23da93974746bc3ac9d207462a6f02d44540", + "zh:a658a00373bff5979cc227052c693cbde8ca4c8f9fef1bc8094a3516f2e2a96d", + "zh:a7bfc6ad8465d5dc11b6f19d6805364de87fffe27622bb4f37da2319bb1c4956", + "zh:d7379a76861f1a6bfc36eca7a20f1f477711247563b105744d69d7bd1f365fad", + "zh:de1cd959fd4821248e8d21570601193408648474e74f49597f1d0c43185a4ab7", + "zh:e0b281240dd6f2aa405b2d6fe329bc15ab877161affe163fb150d1efca2fccdb", + "zh:e372c171358757a983d7aa878abfd05a84484fb4d22167e45c9c1267e78ed060", + "zh:f6d3116526030b3f6905f530cd6c04b23d42890d973fa2abe10ce9c89cb1db80", + "zh:f99eec731e03cc6a28996c875bd435887cd7ea75ec07cc77b9e768bb12da2227", + ] +} diff --git a/.identity/02_application_action.tf b/.identity/02_application_action.tf index d6a7a24..cf38593 100644 --- a/.identity/02_application_action.tf +++ b/.identity/02_application_action.tf @@ -1,96 +1,96 @@ -module "github_runner_app" { - source = "git::https://github.com/pagopa/github-actions-tf-modules.git//app-github-runner-creator?ref=main" - - app_name = local.app_name - - subscription_id = data.azurerm_subscription.current.id - - github_org = local.github.org - github_repository = local.github.repository - github_environment_name = var.env - - container_app_github_runner_env_rg = local.container_app_environment.resource_group -} - -resource "null_resource" "github_runner_app_permissions_to_namespace" { - triggers = { - aks_id = data.azurerm_kubernetes_cluster.aks.id - service_principal_id = module.github_runner_app.client_id - namespace = local.domain - version = "v2" - } - - provisioner "local-exec" { - command = < application; - - @Test - void testItWorks() { - Assertions.assertTrue(application.isRunning()); - } - -} From 88665f532c97501c9b208d0a8bcd190bfdbed22f Mon Sep 17 00:00:00 2001 From: pagopa-github-bot Date: Mon, 11 Dec 2023 13:55:20 +0000 Subject: [PATCH 05/28] Bump to version 0.1.0-1-PAGOPA-1360-sviluppo-massive-upload-service [skip ci] --- helm/Chart.yaml | 4 ++-- helm/values-dev.yaml | 18 ++++++++---------- helm/values-prod.yaml | 18 ++++++++---------- helm/values-uat.yaml | 17 ++++++++--------- openapi/openapi.json | 6 +++++- pom.xml | 2 +- 6 files changed, 32 insertions(+), 33 deletions(-) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index b608062..aba6e09 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: pagopa-afm-calculator description: Microservice that handles calculation for pagoPA Advanced Fees Management type: application -version: 0.0.0 -appVersion: 0.0.0 +version: 0.1.0 +appVersion: 0.1.0-1-PAGOPA-1360-sviluppo-massive-upload-service dependencies: - name: microservice-chart version: 2.8.0 diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index d3d1807..0f32924 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.0.0" + tag: "0.1.0-1-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: @@ -34,9 +34,9 @@ microservice-chart: servicePort: 8080 serviceAccount: create: false - annotations: { } + annotations: {} name: "" - podAnnotations: { } + podAnnotations: {} podSecurityContext: seccompProfile: type: RuntimeDefault @@ -68,7 +68,6 @@ microservice-chart: APP_LOGGING_LEVEL: 'DEBUG' DEFAULT_LOGGING_LEVEL: 'INFO' CORS_CONFIGURATION: '{"origins": ["*"], "methods": ["*"]}' - OTEL_SERVICE_NAME: # TODO OTEL_RESOURCE_ATTRIBUTES: "deployment.environment=dev" OTEL_EXPORTER_OTLP_ENDPOINT: "http://otel-collector.elastic-system.svc:4317" @@ -85,8 +84,8 @@ microservice-chart: keyvault: name: "pagopa-d-gps-kv" tenantId: "7788edaf-0346-4068-9d79-c868aed15b3d" - nodeSelector: { } - tolerations: [ ] + nodeSelector: {} + tolerations: [] affinity: nodeAffinity: requiredDuringSchedulingIgnoredDuringExecution: @@ -97,7 +96,7 @@ microservice-chart: values: - user canaryDelivery: - create: true + create: false ingress: create: true canary: @@ -113,6 +112,5 @@ microservice-chart: repository: ghcr.io/pagopa/yourname # TODO tag: "0.0.0" pullPolicy: Always - envConfig: { } - envSecret: { } - + envConfig: {} + envSecret: {} diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index 7a751aa..980ebba 100644 --- a/helm/values-prod.yaml +++ b/helm/values-prod.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.0.0" + tag: "0.1.0-1-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: @@ -34,9 +34,9 @@ microservice-chart: servicePort: 8080 serviceAccount: create: false - annotations: { } + annotations: {} name: "" - podAnnotations: { } + podAnnotations: {} podSecurityContext: seccompProfile: type: RuntimeDefault @@ -68,7 +68,6 @@ microservice-chart: APP_LOGGING_LEVEL: 'INFO' DEFAULT_LOGGING_LEVEL: 'INFO' CORS_CONFIGURATION: '{"origins": ["*"], "methods": ["*"]}' - OTEL_SERVICE_NAME: # TODO OTEL_RESOURCE_ATTRIBUTES: "deployment.environment=prod" OTEL_EXPORTER_OTLP_ENDPOINT: "http://otel-collector.elastic-system.svc:4317" @@ -83,8 +82,8 @@ microservice-chart: keyvault: name: "pagopa-p-name-kv" #TODO tenantId: "7788edaf-0346-4068-9d79-c868aed15b3d" - nodeSelector: { } - tolerations: [ ] + nodeSelector: {} + tolerations: [] affinity: nodeAffinity: requiredDuringSchedulingIgnoredDuringExecution: @@ -95,7 +94,7 @@ microservice-chart: values: - user canaryDelivery: - create: true + create: false ingress: create: true canary: @@ -111,6 +110,5 @@ microservice-chart: repository: ghcr.io/pagopa/yourname # TODO tag: "0.0.0" pullPolicy: Always - envConfig: { } - envSecret: { } - + envConfig: {} + envSecret: {} diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index 80e74af..03c2d35 100644 --- a/helm/values-uat.yaml +++ b/helm/values-uat.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.0.0" + tag: "0.1.0-1-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: @@ -34,9 +34,9 @@ microservice-chart: servicePort: 8080 serviceAccount: create: false - annotations: { } + annotations: {} name: "" - podAnnotations: { } + podAnnotations: {} podSecurityContext: seccompProfile: type: RuntimeDefault @@ -82,8 +82,8 @@ microservice-chart: keyvault: name: "pagopa-u-name-kv" #TODO tenantId: "7788edaf-0346-4068-9d79-c868aed15b3d" - nodeSelector: { } - tolerations: [ ] + nodeSelector: {} + tolerations: [] affinity: nodeAffinity: requiredDuringSchedulingIgnoredDuringExecution: @@ -94,7 +94,7 @@ microservice-chart: values: - user canaryDelivery: - create: true + create: false ingress: create: true canary: @@ -110,6 +110,5 @@ microservice-chart: repository: ghcr.io/pagopa/yourname # TODO tag: "0.0.0" pullPolicy: Always - envConfig: { } - envSecret: { } - + envConfig: {} + envSecret: {} diff --git a/openapi/openapi.json b/openapi/openapi.json index 0967ef4..cd481cc 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -1 +1,5 @@ -{} +{ + "info": { + "version": "0.1.0-1-PAGOPA-1360-sviluppo-massive-upload-service" + } +} diff --git a/pom.xml b/pom.xml index 8ecb88a..e5091b9 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 it.gov.pagopa.gpd.upload pagopa-gpd-upload - 0.1 + 0.1.0-1-PAGOPA-1360-sviluppo-massive-upload-service ${packaging} From 048b6f6bcd8fa68d91045c24ab75d7502438b8ad Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Mon, 11 Dec 2023 15:09:59 +0100 Subject: [PATCH 06/28] chore: Update vars --- .identity/env/dev/terraform.tfvars | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.identity/env/dev/terraform.tfvars b/.identity/env/dev/terraform.tfvars index a030b6a..d1d9aad 100644 --- a/.identity/env/dev/terraform.tfvars +++ b/.identity/env/dev/terraform.tfvars @@ -13,7 +13,7 @@ tags = { cd_github_federations = [ { - repository = "gpd-upload-service" - subject = "dev-cd" + repository = "pagopa-gpd-upload" + subject = "dev" } ] From bff4ea5c6a71293dab0b348a9cebcd7d675c2af9 Mon Sep 17 00:00:00 2001 From: pagopa-github-bot Date: Mon, 11 Dec 2023 14:11:42 +0000 Subject: [PATCH 07/28] Bump to version 0.1.0-2-PAGOPA-1360-sviluppo-massive-upload-service [skip ci] --- helm/Chart.yaml | 4 ++-- helm/values-dev.yaml | 2 +- helm/values-prod.yaml | 2 +- helm/values-uat.yaml | 2 +- openapi/openapi.json | 2 +- pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index aba6e09..7ce59fd 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: pagopa-afm-calculator description: Microservice that handles calculation for pagoPA Advanced Fees Management type: application -version: 0.1.0 -appVersion: 0.1.0-1-PAGOPA-1360-sviluppo-massive-upload-service +version: 0.2.0 +appVersion: 0.1.0-2-PAGOPA-1360-sviluppo-massive-upload-service dependencies: - name: microservice-chart version: 2.8.0 diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index 0f32924..713446c 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-1-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-2-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index 980ebba..3269573 100644 --- a/helm/values-prod.yaml +++ b/helm/values-prod.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-1-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-2-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index 03c2d35..b3d9ea3 100644 --- a/helm/values-uat.yaml +++ b/helm/values-uat.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-1-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-2-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/openapi/openapi.json b/openapi/openapi.json index cd481cc..690ace8 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -1,5 +1,5 @@ { "info": { - "version": "0.1.0-1-PAGOPA-1360-sviluppo-massive-upload-service" + "version": "0.1.0-2-PAGOPA-1360-sviluppo-massive-upload-service" } } diff --git a/pom.xml b/pom.xml index e5091b9..cbd2663 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 it.gov.pagopa.gpd.upload pagopa-gpd-upload - 0.1.0-1-PAGOPA-1360-sviluppo-massive-upload-service + 0.1.0-2-PAGOPA-1360-sviluppo-massive-upload-service ${packaging} From fc315b45ec407c081823c58a0c4df233d24fd449 Mon Sep 17 00:00:00 2001 From: pagopa-github-bot Date: Mon, 11 Dec 2023 14:23:56 +0000 Subject: [PATCH 08/28] Bump to version 0.1.0-3-PAGOPA-1360-sviluppo-massive-upload-service [skip ci] --- helm/Chart.yaml | 4 ++-- helm/values-dev.yaml | 2 +- helm/values-prod.yaml | 2 +- helm/values-uat.yaml | 2 +- openapi/openapi.json | 2 +- pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 7ce59fd..82b817f 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: pagopa-afm-calculator description: Microservice that handles calculation for pagoPA Advanced Fees Management type: application -version: 0.2.0 -appVersion: 0.1.0-2-PAGOPA-1360-sviluppo-massive-upload-service +version: 0.3.0 +appVersion: 0.1.0-3-PAGOPA-1360-sviluppo-massive-upload-service dependencies: - name: microservice-chart version: 2.8.0 diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index 713446c..735b8cc 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-2-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-3-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index 3269573..6ab0436 100644 --- a/helm/values-prod.yaml +++ b/helm/values-prod.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-2-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-3-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index b3d9ea3..a0a6cf0 100644 --- a/helm/values-uat.yaml +++ b/helm/values-uat.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-2-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-3-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/openapi/openapi.json b/openapi/openapi.json index 690ace8..0d10036 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -1,5 +1,5 @@ { "info": { - "version": "0.1.0-2-PAGOPA-1360-sviluppo-massive-upload-service" + "version": "0.1.0-3-PAGOPA-1360-sviluppo-massive-upload-service" } } diff --git a/pom.xml b/pom.xml index cbd2663..56e99b1 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 it.gov.pagopa.gpd.upload pagopa-gpd-upload - 0.1.0-2-PAGOPA-1360-sviluppo-massive-upload-service + 0.1.0-3-PAGOPA-1360-sviluppo-massive-upload-service ${packaging} From b7606ddc5289c2f93b9350ee301ba42e67df48db Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Mon, 11 Dec 2023 15:33:50 +0100 Subject: [PATCH 09/28] chore: Set APP_NAME --- .github/workflows/deploy_with_github_runner.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy_with_github_runner.yml b/.github/workflows/deploy_with_github_runner.yml index 58fe083..1317099 100644 --- a/.github/workflows/deploy_with_github_runner.yml +++ b/.github/workflows/deploy_with_github_runner.yml @@ -9,7 +9,7 @@ on: type: string env: - APP_NAME: # TODO + APP_NAME: gpd-upload permissions: From 984ccaf442bf0a691299f57b1d14c8b960eff7c3 Mon Sep 17 00:00:00 2001 From: pagopa-github-bot Date: Mon, 11 Dec 2023 14:35:00 +0000 Subject: [PATCH 10/28] Bump to version 0.1.0-4-PAGOPA-1360-sviluppo-massive-upload-service [skip ci] --- helm/Chart.yaml | 4 ++-- helm/values-dev.yaml | 2 +- helm/values-prod.yaml | 2 +- helm/values-uat.yaml | 2 +- openapi/openapi.json | 2 +- pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 82b817f..4388fe5 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: pagopa-afm-calculator description: Microservice that handles calculation for pagoPA Advanced Fees Management type: application -version: 0.3.0 -appVersion: 0.1.0-3-PAGOPA-1360-sviluppo-massive-upload-service +version: 0.4.0 +appVersion: 0.1.0-4-PAGOPA-1360-sviluppo-massive-upload-service dependencies: - name: microservice-chart version: 2.8.0 diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index 735b8cc..dd8273d 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-3-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-4-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index 6ab0436..3f77e5b 100644 --- a/helm/values-prod.yaml +++ b/helm/values-prod.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-3-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-4-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index a0a6cf0..75ab693 100644 --- a/helm/values-uat.yaml +++ b/helm/values-uat.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-3-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-4-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/openapi/openapi.json b/openapi/openapi.json index 0d10036..30bc878 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -1,5 +1,5 @@ { "info": { - "version": "0.1.0-3-PAGOPA-1360-sviluppo-massive-upload-service" + "version": "0.1.0-4-PAGOPA-1360-sviluppo-massive-upload-service" } } diff --git a/pom.xml b/pom.xml index 56e99b1..a6fc8bb 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 it.gov.pagopa.gpd.upload pagopa-gpd-upload - 0.1.0-3-PAGOPA-1360-sviluppo-massive-upload-service + 0.1.0-4-PAGOPA-1360-sviluppo-massive-upload-service ${packaging} From 706e8c9c57198b60c2234cc363f96fc5513ac5d1 Mon Sep 17 00:00:00 2001 From: pagopa-github-bot Date: Mon, 11 Dec 2023 15:10:38 +0000 Subject: [PATCH 11/28] Bump to version 0.1.0-5-PAGOPA-1360-sviluppo-massive-upload-service [skip ci] --- helm/Chart.yaml | 4 ++-- helm/values-dev.yaml | 2 +- helm/values-prod.yaml | 2 +- helm/values-uat.yaml | 2 +- openapi/openapi.json | 2 +- pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 4388fe5..c103e82 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: pagopa-afm-calculator description: Microservice that handles calculation for pagoPA Advanced Fees Management type: application -version: 0.4.0 -appVersion: 0.1.0-4-PAGOPA-1360-sviluppo-massive-upload-service +version: 0.5.0 +appVersion: 0.1.0-5-PAGOPA-1360-sviluppo-massive-upload-service dependencies: - name: microservice-chart version: 2.8.0 diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index dd8273d..a5b7f80 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-4-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-5-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index 3f77e5b..4387e24 100644 --- a/helm/values-prod.yaml +++ b/helm/values-prod.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-4-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-5-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index 75ab693..0743f6d 100644 --- a/helm/values-uat.yaml +++ b/helm/values-uat.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-4-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-5-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/openapi/openapi.json b/openapi/openapi.json index 30bc878..6b4300f 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -1,5 +1,5 @@ { "info": { - "version": "0.1.0-4-PAGOPA-1360-sviluppo-massive-upload-service" + "version": "0.1.0-5-PAGOPA-1360-sviluppo-massive-upload-service" } } diff --git a/pom.xml b/pom.xml index a6fc8bb..d761161 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 it.gov.pagopa.gpd.upload pagopa-gpd-upload - 0.1.0-4-PAGOPA-1360-sviluppo-massive-upload-service + 0.1.0-5-PAGOPA-1360-sviluppo-massive-upload-service ${packaging} From a08288e167a224a646dae9a3654cd5b4044d566d Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Mon, 11 Dec 2023 16:21:46 +0100 Subject: [PATCH 12/28] fix helm values-dev.yaml --- .identity/04_github_identity.tf | 4 ++-- .identity/99_variables.tf | 21 ++++++++------------- .identity/env/dev/terraform.tfvars | 17 +++++++++++++++++ helm/values-dev.yaml | 17 ++++++++++------- 4 files changed, 37 insertions(+), 22 deletions(-) diff --git a/.identity/04_github_identity.tf b/.identity/04_github_identity.tf index 995ef32..ed4f66d 100644 --- a/.identity/04_github_identity.tf +++ b/.identity/04_github_identity.tf @@ -16,8 +16,8 @@ module "identity_cd" { github_federations = var.cd_github_federations cd_rbac_roles = { - subscription_roles = local.environment_cd_roles.subscription - resource_groups = local.environment_cd_roles.resource_groups + subscription_roles = var.environment_cd_roles.subscription + resource_groups = var.environment_cd_roles.resource_groups } tags = var.tags diff --git a/.identity/99_variables.tf b/.identity/99_variables.tf index d28cbe6..ffd99e6 100644 --- a/.identity/99_variables.tf +++ b/.identity/99_variables.tf @@ -20,19 +20,6 @@ locals { name = "${local.prefix}-${var.env_short}-${local.location_short}-github-runner-cae", resource_group = "${local.prefix}-${var.env_short}-${local.location_short}-github-runner-rg", } - - environment_cd_roles = { - subscription = [ - "Contributor", - "Storage Account Contributor", - "Storage Blob Data Contributor", - "Storage File Data SMB Share Contributor", - "Storage Queue Data Contributor", - "Storage Table Data Contributor", - "Key Vault Contributor", - ] - resource_groups = {} - } } variable "location" { @@ -67,6 +54,14 @@ variable "cd_github_federations" { description = "GitHub Organization, repository name and scope permissions" } +variable "environment_cd_roles" { + type = object({ + subscription = list(string) + resource_groups = map(list(string)) + }) + description = "GitHub Continous Delivery roles" +} + variable "github_repository_environment" { type = object({ protected_branches = bool diff --git a/.identity/env/dev/terraform.tfvars b/.identity/env/dev/terraform.tfvars index d1d9aad..2329506 100644 --- a/.identity/env/dev/terraform.tfvars +++ b/.identity/env/dev/terraform.tfvars @@ -17,3 +17,20 @@ cd_github_federations = [ subject = "dev" } ] + +environment_cd_roles = { + subscription = [ + "Contributor", + "Storage Account Contributor", + "Storage Blob Data Contributor", + "Storage File Data SMB Share Contributor", + "Storage Queue Data Contributor", + "Storage Table Data Contributor", + "Key Vault Contributor" + ] + resource_groups = { + "pagopa-d-gps-sec-rg" = [ + "Key Vault Contributor" + ] + } +} diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index a5b7f80..3089a8f 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -1,9 +1,9 @@ microservice-chart: - namespace: "your-namespace" # TODO: set your AKS namespace + namespace: "gps" nameOverride: "" fullnameOverride: "" image: - repository: ghcr.io/pagopa/yourname # TODO + repository: ghcr.io/pagopa/pagopa-gpd-upload tag: "0.1.0-5-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: @@ -52,7 +52,7 @@ microservice-chart: autoscaling: enable: true minReplica: 1 - maxReplica: 10 + maxReplica: 1 pollingInterval: 10 # seconds cooldownPeriod: 50 # seconds triggers: @@ -62,9 +62,8 @@ microservice-chart: type: Utilization # Allowed types are 'Utilization' or 'AverageValue' value: "75" envConfig: - # TODO: set your name - WEBSITE_SITE_NAME: 'yourProjectName' # required to show cloud role name in application insights - ENV: 'azure-dev' + WEBSITE_SITE_NAME: 'pagopa-d-gpd-upload-service' # required to show cloud role name in application insights + ENV: 'azure-kubernetes-dev' APP_LOGGING_LEVEL: 'DEBUG' DEFAULT_LOGGING_LEVEL: 'INFO' CORS_CONFIGURATION: '{"origins": ["*"], "methods": ["*"]}' @@ -81,6 +80,10 @@ microservice-chart: OTEL_EXPORTER_OTLP_HEADERS: elastic-apm-secret-token BLOB_SAS_URL: gpd-upload-blob-sas-url BLOB_SAS_TOKEN: gpd-upload-blob-sas-token + COSMOS_URI: gpd-upload-cosmos-uri + COSMOS_KEY: gpd-upload-cosmos-key + DB_NAME: gpd-upload-cosmos-db-name + CONTAINER_NAME: gpd-upload-cosmos-db-container-name keyvault: name: "pagopa-d-gps-kv" tenantId: "7788edaf-0346-4068-9d79-c868aed15b3d" @@ -109,7 +112,7 @@ microservice-chart: deployment: create: true image: - repository: ghcr.io/pagopa/yourname # TODO + repository: ghcr.io/pagopa/pagopa-gpd-upload tag: "0.0.0" pullPolicy: Always envConfig: {} From afe729faa3b192dccdece7837960d7133ab89ff3 Mon Sep 17 00:00:00 2001 From: pagopa-github-bot Date: Mon, 11 Dec 2023 15:22:54 +0000 Subject: [PATCH 13/28] Bump to version 0.1.0-6-PAGOPA-1360-sviluppo-massive-upload-service [skip ci] --- helm/Chart.yaml | 4 ++-- helm/values-dev.yaml | 2 +- helm/values-prod.yaml | 2 +- helm/values-uat.yaml | 2 +- openapi/openapi.json | 2 +- pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index c103e82..58911da 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: pagopa-afm-calculator description: Microservice that handles calculation for pagoPA Advanced Fees Management type: application -version: 0.5.0 -appVersion: 0.1.0-5-PAGOPA-1360-sviluppo-massive-upload-service +version: 0.6.0 +appVersion: 0.1.0-6-PAGOPA-1360-sviluppo-massive-upload-service dependencies: - name: microservice-chart version: 2.8.0 diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index 3089a8f..18ebb67 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/pagopa-gpd-upload - tag: "0.1.0-5-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-6-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index 4387e24..a867c57 100644 --- a/helm/values-prod.yaml +++ b/helm/values-prod.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-5-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-6-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index 0743f6d..3899405 100644 --- a/helm/values-uat.yaml +++ b/helm/values-uat.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-5-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-6-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/openapi/openapi.json b/openapi/openapi.json index 6b4300f..cabdb28 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -1,5 +1,5 @@ { "info": { - "version": "0.1.0-5-PAGOPA-1360-sviluppo-massive-upload-service" + "version": "0.1.0-6-PAGOPA-1360-sviluppo-massive-upload-service" } } diff --git a/pom.xml b/pom.xml index d761161..c1742b3 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 it.gov.pagopa.gpd.upload pagopa-gpd-upload - 0.1.0-5-PAGOPA-1360-sviluppo-massive-upload-service + 0.1.0-6-PAGOPA-1360-sviluppo-massive-upload-service ${packaging} From 910ddbaa1baca42debf9cab8dab1cb3bc2007798 Mon Sep 17 00:00:00 2001 From: pagopa-github-bot Date: Mon, 11 Dec 2023 15:49:24 +0000 Subject: [PATCH 14/28] Bump to version 0.1.0-7-PAGOPA-1360-sviluppo-massive-upload-service [skip ci] --- helm/Chart.yaml | 4 ++-- helm/values-dev.yaml | 2 +- helm/values-prod.yaml | 2 +- helm/values-uat.yaml | 2 +- openapi/openapi.json | 2 +- pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 58911da..c13915b 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: pagopa-afm-calculator description: Microservice that handles calculation for pagoPA Advanced Fees Management type: application -version: 0.6.0 -appVersion: 0.1.0-6-PAGOPA-1360-sviluppo-massive-upload-service +version: 0.7.0 +appVersion: 0.1.0-7-PAGOPA-1360-sviluppo-massive-upload-service dependencies: - name: microservice-chart version: 2.8.0 diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index 18ebb67..2963612 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/pagopa-gpd-upload - tag: "0.1.0-6-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-7-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index a867c57..726aa1c 100644 --- a/helm/values-prod.yaml +++ b/helm/values-prod.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-6-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-7-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index 3899405..2b9ebdd 100644 --- a/helm/values-uat.yaml +++ b/helm/values-uat.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-6-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-7-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/openapi/openapi.json b/openapi/openapi.json index cabdb28..0788580 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -1,5 +1,5 @@ { "info": { - "version": "0.1.0-6-PAGOPA-1360-sviluppo-massive-upload-service" + "version": "0.1.0-7-PAGOPA-1360-sviluppo-massive-upload-service" } } diff --git a/pom.xml b/pom.xml index c1742b3..931a599 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 it.gov.pagopa.gpd.upload pagopa-gpd-upload - 0.1.0-6-PAGOPA-1360-sviluppo-massive-upload-service + 0.1.0-7-PAGOPA-1360-sviluppo-massive-upload-service ${packaging} From 1b18b363f9195f7282243019aeec42172fa52341 Mon Sep 17 00:00:00 2001 From: pagopa-github-bot Date: Mon, 11 Dec 2023 16:05:18 +0000 Subject: [PATCH 15/28] Bump to version 0.1.0-8-PAGOPA-1360-sviluppo-massive-upload-service [skip ci] --- helm/Chart.yaml | 4 ++-- helm/values-dev.yaml | 2 +- helm/values-prod.yaml | 2 +- helm/values-uat.yaml | 2 +- openapi/openapi.json | 2 +- pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index c13915b..ffd592f 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: pagopa-afm-calculator description: Microservice that handles calculation for pagoPA Advanced Fees Management type: application -version: 0.7.0 -appVersion: 0.1.0-7-PAGOPA-1360-sviluppo-massive-upload-service +version: 0.8.0 +appVersion: 0.1.0-8-PAGOPA-1360-sviluppo-massive-upload-service dependencies: - name: microservice-chart version: 2.8.0 diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index 2963612..4035e4a 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/pagopa-gpd-upload - tag: "0.1.0-7-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-8-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index 726aa1c..68a2062 100644 --- a/helm/values-prod.yaml +++ b/helm/values-prod.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-7-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-8-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index 2b9ebdd..f582128 100644 --- a/helm/values-uat.yaml +++ b/helm/values-uat.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-7-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-8-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/openapi/openapi.json b/openapi/openapi.json index 0788580..e7394d5 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -1,5 +1,5 @@ { "info": { - "version": "0.1.0-7-PAGOPA-1360-sviluppo-massive-upload-service" + "version": "0.1.0-8-PAGOPA-1360-sviluppo-massive-upload-service" } } diff --git a/pom.xml b/pom.xml index 931a599..9a32ac2 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 it.gov.pagopa.gpd.upload pagopa-gpd-upload - 0.1.0-7-PAGOPA-1360-sviluppo-massive-upload-service + 0.1.0-8-PAGOPA-1360-sviluppo-massive-upload-service ${packaging} From 11cf7baeeb06ac253ccd446a1e72ac2c950574d4 Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Mon, 11 Dec 2023 17:09:13 +0100 Subject: [PATCH 16/28] fix helm values-dev.yaml --- helm/values-dev.yaml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index 4035e4a..7ae8d3d 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -66,24 +66,24 @@ microservice-chart: ENV: 'azure-kubernetes-dev' APP_LOGGING_LEVEL: 'DEBUG' DEFAULT_LOGGING_LEVEL: 'INFO' - CORS_CONFIGURATION: '{"origins": ["*"], "methods": ["*"]}' - OTEL_SERVICE_NAME: # TODO - OTEL_RESOURCE_ATTRIBUTES: "deployment.environment=dev" - OTEL_EXPORTER_OTLP_ENDPOINT: "http://otel-collector.elastic-system.svc:4317" - OTEL_TRACES_EXPORTER: otlp - OTEL_METRICS_EXPORTER: otlp - OTEL_LOGS_EXPORTER: none - OTEL_TRACES_SAMPLER: "always_on" +# CORS_CONFIGURATION: '{"origins": ["*"], "methods": ["*"]}' +# OTEL_SERVICE_NAME: # TODO +# OTEL_RESOURCE_ATTRIBUTES: "deployment.environment=dev" +# OTEL_EXPORTER_OTLP_ENDPOINT: "http://otel-collector.elastic-system.svc:4317" +# OTEL_TRACES_EXPORTER: otlp +# OTEL_METRICS_EXPORTER: otlp +# OTEL_LOGS_EXPORTER: none +# OTEL_TRACES_SAMPLER: "always_on" envSecret: # required - APPLICATIONINSIGHTS_CONNECTION_STRING: 'ai-d-connection-string' - OTEL_EXPORTER_OTLP_HEADERS: elastic-apm-secret-token - BLOB_SAS_URL: gpd-upload-blob-sas-url - BLOB_SAS_TOKEN: gpd-upload-blob-sas-token - COSMOS_URI: gpd-upload-cosmos-uri - COSMOS_KEY: gpd-upload-cosmos-key - DB_NAME: gpd-upload-cosmos-db-name - CONTAINER_NAME: gpd-upload-cosmos-db-container-name +# APPLICATIONINSIGHTS_CONNECTION_STRING: 'ai-d-connection-string' +# OTEL_EXPORTER_OTLP_HEADERS: elastic-apm-secret-token + BLOB_SAS_URL: 'gpd-upload-blob-sas-url' + BLOB_SAS_TOKEN: 'gpd-upload-blob-sas-token' + COSMOS_URI: 'gpd-upload-cosmos-uri' + COSMOS_KEY: 'gpd-upload-cosmos-key' + DB_NAME: 'gpd-upload-cosmos-db-name' + CONTAINER_NAME: 'gpd-upload-cosmos-db-container-name' keyvault: name: "pagopa-d-gps-kv" tenantId: "7788edaf-0346-4068-9d79-c868aed15b3d" From 2ba91ce153172e03a38cde6cfb29097c8579a3e3 Mon Sep 17 00:00:00 2001 From: pagopa-github-bot Date: Mon, 11 Dec 2023 16:10:16 +0000 Subject: [PATCH 17/28] Bump to version 0.1.0-9-PAGOPA-1360-sviluppo-massive-upload-service [skip ci] --- helm/Chart.yaml | 4 ++-- helm/values-dev.yaml | 25 +++++++++++++------------ helm/values-prod.yaml | 2 +- helm/values-uat.yaml | 2 +- openapi/openapi.json | 2 +- pom.xml | 2 +- 6 files changed, 19 insertions(+), 18 deletions(-) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index ffd592f..9a0d47d 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: pagopa-afm-calculator description: Microservice that handles calculation for pagoPA Advanced Fees Management type: application -version: 0.8.0 -appVersion: 0.1.0-8-PAGOPA-1360-sviluppo-massive-upload-service +version: 0.9.0 +appVersion: 0.1.0-9-PAGOPA-1360-sviluppo-massive-upload-service dependencies: - name: microservice-chart version: 2.8.0 diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index 7ae8d3d..b060b4e 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/pagopa-gpd-upload - tag: "0.1.0-8-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-9-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: @@ -66,19 +66,20 @@ microservice-chart: ENV: 'azure-kubernetes-dev' APP_LOGGING_LEVEL: 'DEBUG' DEFAULT_LOGGING_LEVEL: 'INFO' -# CORS_CONFIGURATION: '{"origins": ["*"], "methods": ["*"]}' -# OTEL_SERVICE_NAME: # TODO -# OTEL_RESOURCE_ATTRIBUTES: "deployment.environment=dev" -# OTEL_EXPORTER_OTLP_ENDPOINT: "http://otel-collector.elastic-system.svc:4317" -# OTEL_TRACES_EXPORTER: otlp -# OTEL_METRICS_EXPORTER: otlp -# OTEL_LOGS_EXPORTER: none -# OTEL_TRACES_SAMPLER: "always_on" + # CORS_CONFIGURATION: '{"origins": ["*"], "methods": ["*"]}' + # OTEL_SERVICE_NAME: # TODO + # OTEL_RESOURCE_ATTRIBUTES: "deployment.environment=dev" + # OTEL_EXPORTER_OTLP_ENDPOINT: "http://otel-collector.elastic-system.svc:4317" + # OTEL_TRACES_EXPORTER: otlp + # OTEL_METRICS_EXPORTER: otlp + # OTEL_LOGS_EXPORTER: none + # OTEL_TRACES_SAMPLER: "always_on" envSecret: - # required -# APPLICATIONINSIGHTS_CONNECTION_STRING: 'ai-d-connection-string' -# OTEL_EXPORTER_OTLP_HEADERS: elastic-apm-secret-token + # APPLICATIONINSIGHTS_CONNECTION_STRING: 'ai-d-connection-string' + # OTEL_EXPORTER_OTLP_HEADERS: elastic-apm-secret-token BLOB_SAS_URL: 'gpd-upload-blob-sas-url' + # required + BLOB_SAS_TOKEN: 'gpd-upload-blob-sas-token' COSMOS_URI: 'gpd-upload-cosmos-uri' COSMOS_KEY: 'gpd-upload-cosmos-key' diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index 68a2062..2322969 100644 --- a/helm/values-prod.yaml +++ b/helm/values-prod.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-8-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-9-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index f582128..1b341f6 100644 --- a/helm/values-uat.yaml +++ b/helm/values-uat.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-8-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-9-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/openapi/openapi.json b/openapi/openapi.json index e7394d5..2551553 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -1,5 +1,5 @@ { "info": { - "version": "0.1.0-8-PAGOPA-1360-sviluppo-massive-upload-service" + "version": "0.1.0-9-PAGOPA-1360-sviluppo-massive-upload-service" } } diff --git a/pom.xml b/pom.xml index 9a32ac2..6b24f35 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 it.gov.pagopa.gpd.upload pagopa-gpd-upload - 0.1.0-8-PAGOPA-1360-sviluppo-massive-upload-service + 0.1.0-9-PAGOPA-1360-sviluppo-massive-upload-service ${packaging} From def918046b71f963d92c0aa6a71bc8f8dd8f04e8 Mon Sep 17 00:00:00 2001 From: pagopa-github-bot Date: Mon, 11 Dec 2023 16:42:30 +0000 Subject: [PATCH 18/28] Bump to version 0.1.0-10-PAGOPA-1360-sviluppo-massive-upload-service [skip ci] --- helm/Chart.yaml | 4 ++-- helm/values-dev.yaml | 2 +- helm/values-prod.yaml | 2 +- helm/values-uat.yaml | 2 +- openapi/openapi.json | 2 +- pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 9a0d47d..2e40e62 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: pagopa-afm-calculator description: Microservice that handles calculation for pagoPA Advanced Fees Management type: application -version: 0.9.0 -appVersion: 0.1.0-9-PAGOPA-1360-sviluppo-massive-upload-service +version: 0.10.0 +appVersion: 0.1.0-10-PAGOPA-1360-sviluppo-massive-upload-service dependencies: - name: microservice-chart version: 2.8.0 diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index b060b4e..c78f915 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/pagopa-gpd-upload - tag: "0.1.0-9-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-10-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index 2322969..ca60553 100644 --- a/helm/values-prod.yaml +++ b/helm/values-prod.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-9-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-10-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index 1b341f6..a3c530c 100644 --- a/helm/values-uat.yaml +++ b/helm/values-uat.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-9-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-10-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/openapi/openapi.json b/openapi/openapi.json index 2551553..a1d72a1 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -1,5 +1,5 @@ { "info": { - "version": "0.1.0-9-PAGOPA-1360-sviluppo-massive-upload-service" + "version": "0.1.0-10-PAGOPA-1360-sviluppo-massive-upload-service" } } diff --git a/pom.xml b/pom.xml index 6b24f35..4d3782d 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 it.gov.pagopa.gpd.upload pagopa-gpd-upload - 0.1.0-9-PAGOPA-1360-sviluppo-massive-upload-service + 0.1.0-10-PAGOPA-1360-sviluppo-massive-upload-service ${packaging} From a5c47dec10310ae5efc71db7eff17c3be63bd16f Mon Sep 17 00:00:00 2001 From: pagopa-github-bot Date: Mon, 11 Dec 2023 16:51:44 +0000 Subject: [PATCH 19/28] Bump to version 0.1.0-11-PAGOPA-1360-sviluppo-massive-upload-service [skip ci] --- helm/Chart.yaml | 4 ++-- helm/values-dev.yaml | 2 +- helm/values-prod.yaml | 2 +- helm/values-uat.yaml | 2 +- openapi/openapi.json | 2 +- pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 2e40e62..7314146 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: pagopa-afm-calculator description: Microservice that handles calculation for pagoPA Advanced Fees Management type: application -version: 0.10.0 -appVersion: 0.1.0-10-PAGOPA-1360-sviluppo-massive-upload-service +version: 0.11.0 +appVersion: 0.1.0-11-PAGOPA-1360-sviluppo-massive-upload-service dependencies: - name: microservice-chart version: 2.8.0 diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index c78f915..abc0ccf 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/pagopa-gpd-upload - tag: "0.1.0-10-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-11-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index ca60553..03ca162 100644 --- a/helm/values-prod.yaml +++ b/helm/values-prod.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-10-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-11-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index a3c530c..21e2700 100644 --- a/helm/values-uat.yaml +++ b/helm/values-uat.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-10-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-11-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/openapi/openapi.json b/openapi/openapi.json index a1d72a1..1df0970 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -1,5 +1,5 @@ { "info": { - "version": "0.1.0-10-PAGOPA-1360-sviluppo-massive-upload-service" + "version": "0.1.0-11-PAGOPA-1360-sviluppo-massive-upload-service" } } diff --git a/pom.xml b/pom.xml index 4d3782d..3dedc20 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 it.gov.pagopa.gpd.upload pagopa-gpd-upload - 0.1.0-10-PAGOPA-1360-sviluppo-massive-upload-service + 0.1.0-11-PAGOPA-1360-sviluppo-massive-upload-service ${packaging} From fd3e629c836514d0c9ff2e7771d2f801e988fc5e Mon Sep 17 00:00:00 2001 From: pagopa-github-bot Date: Mon, 11 Dec 2023 17:06:08 +0000 Subject: [PATCH 20/28] Bump to version 0.1.0-12-PAGOPA-1360-sviluppo-massive-upload-service [skip ci] --- helm/Chart.yaml | 4 ++-- helm/values-dev.yaml | 2 +- helm/values-prod.yaml | 2 +- helm/values-uat.yaml | 2 +- openapi/openapi.json | 2 +- pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 7314146..fd0d9ff 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: pagopa-afm-calculator description: Microservice that handles calculation for pagoPA Advanced Fees Management type: application -version: 0.11.0 -appVersion: 0.1.0-11-PAGOPA-1360-sviluppo-massive-upload-service +version: 0.12.0 +appVersion: 0.1.0-12-PAGOPA-1360-sviluppo-massive-upload-service dependencies: - name: microservice-chart version: 2.8.0 diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index abc0ccf..c5166fb 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/pagopa-gpd-upload - tag: "0.1.0-11-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-12-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index 03ca162..c085d78 100644 --- a/helm/values-prod.yaml +++ b/helm/values-prod.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-11-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-12-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index 21e2700..57dd5ce 100644 --- a/helm/values-uat.yaml +++ b/helm/values-uat.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-11-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-12-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/openapi/openapi.json b/openapi/openapi.json index 1df0970..29bf253 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -1,5 +1,5 @@ { "info": { - "version": "0.1.0-11-PAGOPA-1360-sviluppo-massive-upload-service" + "version": "0.1.0-12-PAGOPA-1360-sviluppo-massive-upload-service" } } diff --git a/pom.xml b/pom.xml index 3dedc20..c96fd64 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 it.gov.pagopa.gpd.upload pagopa-gpd-upload - 0.1.0-11-PAGOPA-1360-sviluppo-massive-upload-service + 0.1.0-12-PAGOPA-1360-sviluppo-massive-upload-service ${packaging} From f524b0b77bb63fb51c95d152c728bb596142e26d Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Mon, 11 Dec 2023 18:47:28 +0100 Subject: [PATCH 21/28] fix --- .identity/02_application_action.tf | 60 +++++++++++++++--------------- .identity/env/dev/terraform.tfvars | 3 ++ helm/values-dev.yaml | 4 +- 3 files changed, 35 insertions(+), 32 deletions(-) diff --git a/.identity/02_application_action.tf b/.identity/02_application_action.tf index cf38593..4bc60d1 100644 --- a/.identity/02_application_action.tf +++ b/.identity/02_application_action.tf @@ -11,36 +11,36 @@ # # container_app_github_runner_env_rg = local.container_app_environment.resource_group #} -# -#resource "null_resource" "github_runner_app_permissions_to_namespace" { -# triggers = { -# aks_id = data.azurerm_kubernetes_cluster.aks.id -# service_principal_id = module.github_runner_app.client_id -# namespace = local.domain -# version = "v2" -# } -# -# provisioner "local-exec" { -# command = < Date: Mon, 11 Dec 2023 17:49:31 +0000 Subject: [PATCH 22/28] Bump to version 0.1.0-13-PAGOPA-1360-sviluppo-massive-upload-service [skip ci] --- helm/Chart.yaml | 4 ++-- helm/values-dev.yaml | 2 +- helm/values-prod.yaml | 2 +- helm/values-uat.yaml | 2 +- openapi/openapi.json | 2 +- pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index fd0d9ff..c3d1516 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: pagopa-afm-calculator description: Microservice that handles calculation for pagoPA Advanced Fees Management type: application -version: 0.12.0 -appVersion: 0.1.0-12-PAGOPA-1360-sviluppo-massive-upload-service +version: 0.13.0 +appVersion: 0.1.0-13-PAGOPA-1360-sviluppo-massive-upload-service dependencies: - name: microservice-chart version: 2.8.0 diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index e5d5a8c..66ec726 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/pagopa-gpd-upload - tag: "0.1.0-12-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-13-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index c085d78..dfbb358 100644 --- a/helm/values-prod.yaml +++ b/helm/values-prod.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-12-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-13-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index 57dd5ce..b880f36 100644 --- a/helm/values-uat.yaml +++ b/helm/values-uat.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-12-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-13-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/openapi/openapi.json b/openapi/openapi.json index 29bf253..2567954 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -1,5 +1,5 @@ { "info": { - "version": "0.1.0-12-PAGOPA-1360-sviluppo-massive-upload-service" + "version": "0.1.0-13-PAGOPA-1360-sviluppo-massive-upload-service" } } diff --git a/pom.xml b/pom.xml index c96fd64..50868ac 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 it.gov.pagopa.gpd.upload pagopa-gpd-upload - 0.1.0-12-PAGOPA-1360-sviluppo-massive-upload-service + 0.1.0-13-PAGOPA-1360-sviluppo-massive-upload-service ${packaging} From ba1fc46ea12c9f7207bdb99b9399d235b287e862 Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Tue, 12 Dec 2023 11:27:41 +0100 Subject: [PATCH 23/28] refactoring --- .../gpd/upload/repository/BlobStorageRepository.java | 7 ++++++- src/main/resources/application.properties | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main/java/it/gov/pagopa/gpd/upload/repository/BlobStorageRepository.java b/src/main/java/it/gov/pagopa/gpd/upload/repository/BlobStorageRepository.java index 92511da..83ffe52 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/repository/BlobStorageRepository.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/repository/BlobStorageRepository.java @@ -1,9 +1,11 @@ package it.gov.pagopa.gpd.upload.repository; +import com.azure.core.http.rest.PagedIterable; import com.azure.storage.blob.BlobClient; import com.azure.storage.blob.BlobContainerClient; import com.azure.storage.blob.BlobServiceClient; import com.azure.storage.blob.BlobServiceClientBuilder; +import com.azure.storage.blob.models.BlobContainerItem; import com.azure.storage.blob.specialized.BlockBlobClient; import io.micronaut.context.annotation.Context; import io.micronaut.context.annotation.Value; @@ -30,6 +32,9 @@ public class BlobStorageRepository implements FileRepository { @Value("${blob.sas.token}") private String blobToken; + @Value("${blob.container.input}") + private String inputContainer; + private BlobServiceClient blobServiceClient; @PostConstruct @@ -57,7 +62,7 @@ public URL findURLbyKey(String key) { @Override public String upload(String fiscalCode, File file) throws FileNotFoundException { - BlobContainerClient container = blobServiceClient.getBlobContainerClient("input/" + fiscalCode); + BlobContainerClient container = blobServiceClient.getBlobContainerClient(inputContainer + "/" + fiscalCode); String key = this.createRandomName(fiscalCode); BlobClient blobClient = container.getBlobClient(key); // retry in case of pseudo random collision diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 2b69595..7465a28 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -12,6 +12,7 @@ micronaut.server.max-request-size.multipart.max-file-size=1048576000 blob.sas.url=${BLOB_SAS_URL} blob.sas.token=${BLOB_SAS_TOKEN} +blob.container.input=gpd-upload/input zip.content.size=104857600 zip.entries=1 From 248389a817def8939990f906cea81a539c59171b Mon Sep 17 00:00:00 2001 From: pagopa-github-bot Date: Tue, 12 Dec 2023 10:29:58 +0000 Subject: [PATCH 24/28] Bump to version 0.1.0-14-PAGOPA-1360-sviluppo-massive-upload-service [skip ci] --- helm/Chart.yaml | 4 ++-- helm/values-dev.yaml | 2 +- helm/values-prod.yaml | 2 +- helm/values-uat.yaml | 2 +- openapi/openapi.json | 2 +- pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index c3d1516..99c5187 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: pagopa-afm-calculator description: Microservice that handles calculation for pagoPA Advanced Fees Management type: application -version: 0.13.0 -appVersion: 0.1.0-13-PAGOPA-1360-sviluppo-massive-upload-service +version: 0.14.0 +appVersion: 0.1.0-14-PAGOPA-1360-sviluppo-massive-upload-service dependencies: - name: microservice-chart version: 2.8.0 diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index 66ec726..43ac883 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/pagopa-gpd-upload - tag: "0.1.0-13-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-14-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index dfbb358..80c5cfe 100644 --- a/helm/values-prod.yaml +++ b/helm/values-prod.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-13-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-14-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index b880f36..ada5ec3 100644 --- a/helm/values-uat.yaml +++ b/helm/values-uat.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.0-13-PAGOPA-1360-sviluppo-massive-upload-service" + tag: "0.1.0-14-PAGOPA-1360-sviluppo-massive-upload-service" pullPolicy: Always livenessProbe: httpGet: diff --git a/openapi/openapi.json b/openapi/openapi.json index 2567954..4c1610b 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -1,5 +1,5 @@ { "info": { - "version": "0.1.0-13-PAGOPA-1360-sviluppo-massive-upload-service" + "version": "0.1.0-14-PAGOPA-1360-sviluppo-massive-upload-service" } } diff --git a/pom.xml b/pom.xml index 50868ac..9710792 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 it.gov.pagopa.gpd.upload pagopa-gpd-upload - 0.1.0-13-PAGOPA-1360-sviluppo-massive-upload-service + 0.1.0-14-PAGOPA-1360-sviluppo-massive-upload-service ${packaging} From 624a37d905d5a52c7db06b936e5c415e0234740e Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Tue, 12 Dec 2023 12:42:38 +0100 Subject: [PATCH 25/28] test --- .github/workflows/release_deploy.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/release_deploy.yml b/.github/workflows/release_deploy.yml index ea32ced..b48015e 100644 --- a/.github/workflows/release_deploy.yml +++ b/.github/workflows/release_deploy.yml @@ -106,7 +106,6 @@ jobs: github_token: ${{ secrets.BOT_TOKEN_GITHUB }} beta: ${{ inputs.beta }} skip_ci: false - jdk_version: 17 image: needs: [ setup, release ] From 73c52ef5509268560c70f7f71c796fc8c48941ee Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Tue, 12 Dec 2023 12:46:26 +0100 Subject: [PATCH 26/28] fix --- .github/workflows/release_deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release_deploy.yml b/.github/workflows/release_deploy.yml index b48015e..ea32ced 100644 --- a/.github/workflows/release_deploy.yml +++ b/.github/workflows/release_deploy.yml @@ -106,6 +106,7 @@ jobs: github_token: ${{ secrets.BOT_TOKEN_GITHUB }} beta: ${{ inputs.beta }} skip_ci: false + jdk_version: 17 image: needs: [ setup, release ] From 4310724a96c376bac9618f2fbd6f28e5eab5061f Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Tue, 2 Jan 2024 09:49:27 +0100 Subject: [PATCH 27/28] refactoring and fix --- .github/workflows/release_deploy.yml | 2 +- .gitignore | 1 + README.md | 10 +++++---- .../gpd/upload/controller/FileController.java | 21 +++++++++++++++++++ 4 files changed, 29 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release_deploy.yml b/.github/workflows/release_deploy.yml index ea32ced..fe59fe2 100644 --- a/.github/workflows/release_deploy.yml +++ b/.github/workflows/release_deploy.yml @@ -100,7 +100,7 @@ jobs: steps: - name: Make Release id: release - uses: pagopa/github-actions-template/maven-release@PAGOPA-1360-gpd-upload-service + uses: pagopa/github-actions-template/maven-release@main with: semver: ${{ needs.setup.outputs.semver }} github_token: ${{ secrets.BOT_TOKEN_GITHUB }} diff --git a/.gitignore b/.gitignore index 79d7c43..4379a6c 100644 --- a/.gitignore +++ b/.gitignore @@ -38,3 +38,4 @@ hs_err_pid* # Helm /helm/charts/* **/.terraform/ +/helm/Chart.lock diff --git a/README.md b/README.md index 908aa6d..d5fa80c 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,13 @@ -# GPD Massive Upload Microservice +## GPD Massive Upload ยต-service [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=TODO-set-your-id&metric=alert_status)](https://sonarcloud.io/dashboard?id=TODO-set-your-id) [![Integration Tests](https://github.com/pagopa//actions/workflows/integration_test.yml/badge.svg?branch=main)](https://github.com/pagopa//actions/workflows/integration_test.yml) -TODO: add a description + +This microservice has the responsibility of handling the upload of the files holding debt positions. +It allows the creditor institutions to: +- Upload file +- Get file upload status TODO: generate a index with this tool: https://ecotrust-canada.github.io/markdown-toc/ @@ -22,8 +26,6 @@ See the [OpenApi 3 here.](https://editor.swagger.io/?url=https://raw.githubuserc - Java 17 - Micronaut - Azure Storage Blob -- ... -- TODO --- diff --git a/src/main/java/it/gov/pagopa/gpd/upload/controller/FileController.java b/src/main/java/it/gov/pagopa/gpd/upload/controller/FileController.java index 4cd3e3b..b6b9440 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/controller/FileController.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/controller/FileController.java @@ -7,8 +7,15 @@ import io.micronaut.http.multipart.CompletedFileUpload; import io.micronaut.scheduling.TaskExecutors; import io.micronaut.scheduling.annotation.ExecuteOn; +import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.responses.ApiResponses; +import io.swagger.v3.oas.annotations.security.SecurityRequirement; import it.gov.pagopa.gpd.upload.model.FileStatus; +import it.gov.pagopa.gpd.upload.model.ProblemJson; import it.gov.pagopa.gpd.upload.service.FileStatusService; import it.gov.pagopa.gpd.upload.service.FileUploadService; import jakarta.inject.Inject; @@ -29,6 +36,13 @@ public class FileController { @Inject FileStatusService fileStatusService; + @Operation(summary = "The Organization creates the debt positions listed in the file.", security = {@SecurityRequirement(name = "ApiKey"), @SecurityRequirement(name = "Authorization")}, operationId = "createMassivePositions") + @ApiResponses(value = { + @ApiResponse(responseCode = "201", description = "Request created."), + @ApiResponse(responseCode = "400", description = "Malformed request.", content = @Content(mediaType = MediaType.APPLICATION_JSON, schema = @Schema(implementation = ProblemJson.class))), + @ApiResponse(responseCode = "401", description = "Wrong or missing function key.", content = @Content(schema = @Schema())), + @ApiResponse(responseCode = "409", description = "Conflict: duplicate debt position found.", content = @Content(mediaType = MediaType.APPLICATION_JSON, schema = @Schema(implementation = ProblemJson.class))), + @ApiResponse(responseCode = "500", description = "Service unavailable.", content = @Content(mediaType = MediaType.APPLICATION_JSON, schema = @Schema(implementation = ProblemJson.class)))}) @Consumes(MediaType.MULTIPART_FORM_DATA) @Post("/organizations/{organizationFiscalCode}/debtpositions/file") public HttpResponse uploadDebtPositionFile(@Parameter(description = "The organization fiscal code", required = true) @@ -40,6 +54,13 @@ public HttpResponse uploadDebtPositionFile(@Parameter(description = "The organiz .body(key); } + @Operation(summary = "Returns the upload status of debt positions uploaded via file.", security = {@SecurityRequirement(name = "ApiKey"), @SecurityRequirement(name = "Authorization")}, operationId = "createMassivePositions") + @ApiResponses(value = { + @ApiResponse(responseCode = "201", description = "Request created."), + @ApiResponse(responseCode = "400", description = "Malformed request.", content = @Content(mediaType = MediaType.APPLICATION_JSON, schema = @Schema(implementation = ProblemJson.class))), + @ApiResponse(responseCode = "401", description = "Wrong or missing function key.", content = @Content(schema = @Schema())), + @ApiResponse(responseCode = "409", description = "Conflict: duplicate debt position found.", content = @Content(mediaType = MediaType.APPLICATION_JSON, schema = @Schema(implementation = ProblemJson.class))), + @ApiResponse(responseCode = "500", description = "Service unavailable.", content = @Content(mediaType = MediaType.APPLICATION_JSON, schema = @Schema(implementation = ProblemJson.class)))}) @Get(value = "/organizations/{organizationFiscalCode}/debtpositions/file/{fileId}/status", produces = MediaType.APPLICATION_JSON) HttpResponse getFileSatus( From 3ed60bf04dfb9a94b5ea616f694cc278a9fb6209 Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Tue, 2 Jan 2024 18:46:04 +0100 Subject: [PATCH 28/28] fix code review --- .github/workflows/code_review.yml | 5 +++-- helm/values-dev.yaml | 2 -- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/code_review.yml b/.github/workflows/code_review.yml index 3ea4730..9bd52ab 100644 --- a/.github/workflows/code_review.yml +++ b/.github/workflows/code_review.yml @@ -18,7 +18,7 @@ on: workflow_dispatch: env: - PROJECT_KEY: # TODO + PROJECT_KEY: pagopa_pagopa-gpd-upload permissions: id-token: write @@ -35,13 +35,14 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: - name: Code Review - uses: pagopa/github-actions-template/maven-code-review@v1.4.2 + uses: pagopa/github-actions-template/maven-code-review@v1.10.4 with: github_token: ${{ secrets.GITHUB_TOKEN }} sonar_token: ${{ secrets.SONAR_TOKEN }} project_key: ${{env.PROJECT_KEY}} coverage_exclusions: "**/config/*,**/*Mock*,**/model/**,**/entity/*" cpd_exclusions: "**/model/**,**/entity/*" + java_version: 17 smoke-test: name: Smoke Test diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index 43ac883..3719cbb 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -78,8 +78,6 @@ microservice-chart: # APPLICATIONINSIGHTS_CONNECTION_STRING: 'ai-d-connection-string' # OTEL_EXPORTER_OTLP_HEADERS: elastic-apm-secret-token BLOB_SAS_URL: 'gpd-upload-blob-sas-url' - # required - BLOB_SAS_TOKEN: 'gpd-upload-blob-sas-token' COSMOS_URI: 'gpd-upload-cosmos-uri' COSMOS_KEY: 'gpd-upload-cosmos-key'