From d7f62773d7df283b9cc57bf779cede4c949978db Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Fri, 5 Jan 2024 09:51:52 +0100 Subject: [PATCH 01/12] fix: Update API and repository --- .identity/00_data.tf | 5 --- .../gpd/upload/controller/FileController.java | 43 ++++++++++++++----- .../pagopa/gpd/upload/model/FileStatus.java | 1 + .../upload/repository/StatusRepository.java | 12 +++--- .../gpd/upload/service/FileStatusService.java | 4 +- 5 files changed, 43 insertions(+), 22 deletions(-) diff --git a/.identity/00_data.tf b/.identity/00_data.tf index 8273e72..3d8d30c 100644 --- a/.identity/00_data.tf +++ b/.identity/00_data.tf @@ -1,8 +1,3 @@ -data "azurerm_storage_account" "tf_storage_account"{ - name = "pagopainfraterraform${var.env}" - resource_group_name = "io-infra-rg" -} - data "azurerm_resource_group" "dashboards" { name = "dashboards" } 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 b6b9440..6e8aa6e 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,5 +1,9 @@ package it.gov.pagopa.gpd.upload.controller; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule; +import io.micronaut.context.annotation.Value; +import io.micronaut.http.HttpHeaders; import io.micronaut.http.HttpResponse; import io.micronaut.http.HttpStatus; import io.micronaut.http.MediaType; @@ -18,12 +22,16 @@ 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.annotation.PostConstruct; import jakarta.inject.Inject; import jakarta.validation.constraints.NotBlank; +import lombok.SneakyThrows; import lombok.extern.slf4j.Slf4j; import java.io.IOException; +import java.net.URI; +import java.text.SimpleDateFormat; @ExecuteOn(TaskExecutors.IO) @Controller() @@ -36,12 +44,24 @@ public class FileController { @Inject FileStatusService fileStatusService; + @Value("${response.headers.retry_after.millis}") + private int retryAfter; + private ObjectMapper objectMapper; + + @PostConstruct + public void init() { + ObjectMapper objectMapper = new ObjectMapper(); + objectMapper.registerModule(new JavaTimeModule()); + objectMapper.setDateFormat(new SimpleDateFormat("yyyy-MM-ddHH:mm:ss.SSS")); + } + + @SneakyThrows @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 = "202", description = "Request accepted."), @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 = "409", description = "Conflict: duplicate file 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") @@ -50,30 +70,33 @@ public HttpResponse uploadDebtPositionFile(@Parameter(description = "The organiz String key = fileUploadService.upload(organizationFiscalCode, file); log.debug("A file with name: " + file.getFilename() + " has been uploaded"); - return HttpResponse.status(HttpStatus.OK) - .body(key); + String uri = "/organizations/" + organizationFiscalCode +"/debtpositions/file/" + key +"/status"; + HttpResponse response = HttpResponse.accepted(new URI(uri)); + + return response.toMutableResponse().header(HttpHeaders.RETRY_AFTER, retryAfter + " ms"); } + @SneakyThrows @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 = "200", description = "Upload found."), @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 = "404", description = "Upload not 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( + 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); + FileStatus fileStatus = fileStatusService.getStatus(fileId, organizationFiscalCode); log.debug("The Status related to file-id " + fileId + " has been found"); return HttpResponse.status(HttpStatus.OK) - .body(fileStatus); + .contentType(MediaType.APPLICATION_JSON) + .body(objectMapper.writeValueAsString(fileStatus)); } - } 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 index 4b69fd9..e46c5ce 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/model/FileStatus.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/model/FileStatus.java @@ -10,6 +10,7 @@ @Setter @NoArgsConstructor @AllArgsConstructor +@ToString public class FileStatus { public String fileId; private ArrayList successIUPD; 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 951c54a..7022852 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 @@ -3,6 +3,7 @@ import com.azure.cosmos.CosmosClientBuilder; import com.azure.cosmos.CosmosClient; import com.azure.cosmos.CosmosContainer; +import com.azure.cosmos.CosmosException; import com.azure.cosmos.models.CosmosItemResponse; import com.azure.cosmos.models.PartitionKey; import io.micronaut.context.annotation.Context; @@ -52,12 +53,13 @@ public Status saveStatus(Status status) { 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); + public Status findStatusById(String id, String fiscalCode) { + try { + CosmosItemResponse response = container.readItem(id, new PartitionKey(fiscalCode), Status.class); + return response.getItem(); + } catch (CosmosException ex) { + log.error("the Status retrieval was not successful: " + ex.getStatusCode()); 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 ca34c75..bbcce1d 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 @@ -18,8 +18,8 @@ public class FileStatusService { @Inject StatusRepository statusRepository; - public FileStatus getStatus(String fileId) { - return map(statusRepository.findStatusById(fileId)); + public FileStatus getStatus(String fileId, String organizationFiscalCode) { + return map(statusRepository.findStatusById(fileId, organizationFiscalCode)); } public Status createUploadStatus(String organizationFiscalCode, String fileId, PaymentPositionsModel paymentPositionsModel) { From e1d257d020b91d0b0cba79206cf115f2b0cb1756 Mon Sep 17 00:00:00 2001 From: pagopa-github-bot Date: Fri, 5 Jan 2024 09:30:39 +0000 Subject: [PATCH 02/12] Bump to version 0.1.1-1-PAGOPA-1360-refactoring [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 bb1c638..a625340 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.15.0 -appVersion: 0.1.1 +version: 0.16.0 +appVersion: 0.1.1-1-PAGOPA-1360-refactoring dependencies: - name: microservice-chart version: 2.8.0 diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index 9c4fd04..f23f935 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.1" + tag: "0.1.1-1-PAGOPA-1360-refactoring" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index 11763f4..8a9773d 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.1" + tag: "0.1.1-1-PAGOPA-1360-refactoring" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index 8179e29..9db6d25 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.1" + tag: "0.1.1-1-PAGOPA-1360-refactoring" pullPolicy: Always livenessProbe: httpGet: diff --git a/openapi/openapi.json b/openapi/openapi.json index 11395bd..f091595 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -1,5 +1,5 @@ { "info": { - "version": "0.1.1" + "version": "0.1.1-1-PAGOPA-1360-refactoring" } } diff --git a/pom.xml b/pom.xml index 26221e3..86197ed 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 it.gov.pagopa.gpd.upload pagopa-gpd-upload - 0.1.1 + 0.1.1-1-PAGOPA-1360-refactoring ${packaging} From 97340bf602b36a0e7998b470a27c9c890ad0e13f Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Fri, 5 Jan 2024 10:44:52 +0100 Subject: [PATCH 03/12] fix: Update envSecret --- helm/values-dev.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index f23f935..4ec090a 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -77,8 +77,8 @@ microservice-chart: envSecret: # 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' + BLOB_SAS_URL: 'gpd-upload-sas-url-blob' + BLOB_SAS_TOKEN: 'gpd-upload-sas-token-blob' COSMOS_URI: 'gpd-upload-cosmos-uri' COSMOS_KEY: 'gpd-upload-cosmos-key' DB_NAME: 'gpd-upload-cosmos-db-name' From 178308feface9f268dc5f495d3252e988c49001a Mon Sep 17 00:00:00 2001 From: pagopa-github-bot Date: Fri, 5 Jan 2024 09:46:14 +0000 Subject: [PATCH 04/12] Bump to version 0.1.1-2-PAGOPA-1360-refactoring [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 a625340..785e943 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.16.0 -appVersion: 0.1.1-1-PAGOPA-1360-refactoring +version: 0.17.0 +appVersion: 0.1.1-2-PAGOPA-1360-refactoring dependencies: - name: microservice-chart version: 2.8.0 diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index 4ec090a..fdd25e0 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.1-1-PAGOPA-1360-refactoring" + tag: "0.1.1-2-PAGOPA-1360-refactoring" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index 8a9773d..da0f8b4 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.1-1-PAGOPA-1360-refactoring" + tag: "0.1.1-2-PAGOPA-1360-refactoring" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index 9db6d25..40b6365 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.1-1-PAGOPA-1360-refactoring" + tag: "0.1.1-2-PAGOPA-1360-refactoring" pullPolicy: Always livenessProbe: httpGet: diff --git a/openapi/openapi.json b/openapi/openapi.json index f091595..16c5edb 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -1,5 +1,5 @@ { "info": { - "version": "0.1.1-1-PAGOPA-1360-refactoring" + "version": "0.1.1-2-PAGOPA-1360-refactoring" } } diff --git a/pom.xml b/pom.xml index 86197ed..5d5d7d2 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 it.gov.pagopa.gpd.upload pagopa-gpd-upload - 0.1.1-1-PAGOPA-1360-refactoring + 0.1.1-2-PAGOPA-1360-refactoring ${packaging} From b4b72f06b46931a177803bb5c755aa0c120725d2 Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Fri, 5 Jan 2024 18:06:43 +0100 Subject: [PATCH 05/12] fix: Update retry after property --- helm/Chart.yaml | 4 ++-- helm/values-dev.yaml | 8 +++++--- .../gov/pagopa/gpd/upload/controller/FileController.java | 2 +- src/main/resources/application.properties | 2 ++ 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 785e943..32a88a2 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 -name: pagopa-afm-calculator -description: Microservice that handles calculation for pagoPA Advanced Fees Management +name: pagopa-gpd-upload +description: Microservice that handles file upload of massive debt positions JSON object type: application version: 0.17.0 appVersion: 0.1.1-2-PAGOPA-1360-refactoring diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index fdd25e0..253b501 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -66,6 +66,11 @@ microservice-chart: ENV: 'azure-kubernetes-dev' APP_LOGGING_LEVEL: 'DEBUG' DEFAULT_LOGGING_LEVEL: 'INFO' + COSMOS_URI: "https://pagopa-d-weu-gps-cosmos-account.documents.azure.com:443/" + DB_NAME: "gpd_db" + CONTAINER_NAME: "gpd_upload_status" + POST_FILE_RETRY_AFTER: '10000' + LOG_LEVEL: "DEBUG" # CORS_CONFIGURATION: '{"origins": ["*"], "methods": ["*"]}' # OTEL_SERVICE_NAME: # TODO # OTEL_RESOURCE_ATTRIBUTES: "deployment.environment=dev" @@ -79,10 +84,7 @@ microservice-chart: # OTEL_EXPORTER_OTLP_HEADERS: elastic-apm-secret-token BLOB_SAS_URL: 'gpd-upload-sas-url-blob' BLOB_SAS_TOKEN: 'gpd-upload-sas-token-blob' - 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" 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 6e8aa6e..64f373f 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 @@ -44,7 +44,7 @@ public class FileController { @Inject FileStatusService fileStatusService; - @Value("${response.headers.retry_after.millis}") + @Value("${post.file.response.headers.retry_after.millis}") private int retryAfter; private ObjectMapper objectMapper; diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 7465a28..013c496 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -21,4 +21,6 @@ cosmos.key=${COSMOS_KEY} cosmos.database.name=${DB_NAME} cosmos.container.name=${CONTAINER_NAME} +post.file.response.headers.retry_after.millis=${POST_FILE_RETRY_AFTER} + log.level=${LOG_LEVEL} From 3c33b15ea88d3099f3302d93da42d2a90f5765e7 Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Thu, 11 Jan 2024 09:37:10 +0100 Subject: [PATCH 06/12] feat: Update model --- README.md | 10 ++++++++++ .../gpd/upload/controller/FileController.java | 2 +- .../gov/pagopa/gpd/upload/entity/FailedIUPD.java | 16 ++++++++++++++++ .../it/gov/pagopa/gpd/upload/entity/Upload.java | 6 +++++- .../gpd/upload/exception/ErrorHandler.java | 2 +- .../gov/pagopa/gpd/upload/model/FileStatus.java | 2 ++ .../upload/repository/BlobStorageRepository.java | 10 +++------- .../gpd/upload/service/FileStatusService.java | 12 ++++++++++-- src/main/resources/application.properties | 5 ++--- 9 files changed, 50 insertions(+), 15 deletions(-) create mode 100644 src/main/java/it/gov/pagopa/gpd/upload/entity/FailedIUPD.java diff --git a/README.md b/README.md index d5fa80c..485f717 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,16 @@ Start the micronaut application with this command: `mvn mn:run` +### Rule of thumb + +Prevent more than 1 file in with macOS + +`zip -d filename.zip __MACOSX/\*` + +`zip -d filename.zip \*/.DS_Store` + +`zip file.zip uncompressed` + ### Micronaut Profiles - **local**: to develop locally. 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 64f373f..ed14650 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 @@ -50,7 +50,7 @@ public class FileController { @PostConstruct public void init() { - ObjectMapper objectMapper = new ObjectMapper(); + objectMapper = new ObjectMapper(); objectMapper.registerModule(new JavaTimeModule()); objectMapper.setDateFormat(new SimpleDateFormat("yyyy-MM-ddHH:mm:ss.SSS")); } diff --git a/src/main/java/it/gov/pagopa/gpd/upload/entity/FailedIUPD.java b/src/main/java/it/gov/pagopa/gpd/upload/entity/FailedIUPD.java new file mode 100644 index 0000000..5e4dcb3 --- /dev/null +++ b/src/main/java/it/gov/pagopa/gpd/upload/entity/FailedIUPD.java @@ -0,0 +1,16 @@ +package it.gov.pagopa.gpd.upload.entity; + +import lombok.*; + +import java.util.List; + +@Builder(toBuilder = true) +@Getter +@Setter +@NoArgsConstructor +@AllArgsConstructor +public class FailedIUPD { + private int errorCode; + private String details; + private List skippedIUPDs; +} \ No newline at end of file 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 index fa0a866..4b67acb 100644 --- a/src/main/java/it/gov/pagopa/gpd/upload/entity/Upload.java +++ b/src/main/java/it/gov/pagopa/gpd/upload/entity/Upload.java @@ -15,9 +15,13 @@ public class Upload { private int current; private int total; private ArrayList successIUPD; - private ArrayList failedIUPD; + private ArrayList failedIUPDs; @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss") private LocalDateTime start; @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss") private LocalDateTime end; + + public void addFailures(FailedIUPD failedIUPD) { + this.failedIUPDs.add(failedIUPD); + } } 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 7e9709c..4d222fb 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 @@ -17,7 +17,7 @@ public class ErrorHandler implements ExceptionHandler successIUPD; private ArrayList failedIUPD; private LocalDateTime uploadTime; 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 83ffe52..5276f43 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 @@ -26,11 +26,8 @@ @Slf4j public class BlobStorageRepository implements FileRepository { - @Value("${blob.sas.url}") - private String blobURL; - - @Value("${blob.sas.token}") - private String blobToken; + @Value("${blob.sas.connection}") + private String connectionString; @Value("${blob.container.input}") private String inputContainer; @@ -40,8 +37,7 @@ public class BlobStorageRepository implements FileRepository { @PostConstruct public void init() { blobServiceClient = new BlobServiceClientBuilder() - .endpoint(blobURL) - .sasToken(blobToken) + .connectionString(connectionString) .buildClient(); } 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 bbcce1d..0165142 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 @@ -11,6 +11,7 @@ import java.time.LocalDateTime; import java.util.ArrayList; +import java.util.stream.Collectors; @Singleton @Slf4j @@ -27,7 +28,7 @@ public Status createUploadStatus(String organizationFiscalCode, String fileId, P .current(0) .total(paymentPositionsModel.getPaymentPositions().size()) .successIUPD(new ArrayList<>()) - .failedIUPD(new ArrayList<>()) + .failedIUPDs(new ArrayList<>()) .start(LocalDateTime.now()) .build(); Status status = Status.builder() @@ -40,10 +41,17 @@ public Status createUploadStatus(String organizationFiscalCode, String fileId, P } private FileStatus map(Status status) { + // returns only IUPD codes because FailedIUPD could be too verbose and would generate a high size response + ArrayList failedIUPD = status.upload.getFailedIUPDs().stream() + .flatMap(f -> f.getSkippedIUPDs().stream()) + .collect(Collectors.toCollection(ArrayList::new)); + return FileStatus.builder() .fileId(status.id) + .processed(status.upload.getCurrent()) + .uploaded(status.upload.getTotal()) .successIUPD(status.upload.getSuccessIUPD()) - .failedIUPD(status.upload.getFailedIUPD()) + .failedIUPD(failedIUPD) .uploadTime(status.upload.getStart()) .build(); } diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 013c496..c0165b6 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -10,11 +10,10 @@ 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.connection=${BLOB_CONNECTION_STRING} blob.container.input=gpd-upload/input zip.content.size=104857600 -zip.entries=1 +zip.entries=2 cosmos.uri=${COSMOS_URI} cosmos.key=${COSMOS_KEY} From 0aafebbd842bb66663b7b61808a8be9398b1b704 Mon Sep 17 00:00:00 2001 From: pagopa-github-bot Date: Thu, 11 Jan 2024 08:39:21 +0000 Subject: [PATCH 07/12] Bump to version 0.1.1-3-PAGOPA-1360-refactoring [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 32a88a2..9d69a25 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: pagopa-gpd-upload description: Microservice that handles file upload of massive debt positions JSON object type: application -version: 0.17.0 -appVersion: 0.1.1-2-PAGOPA-1360-refactoring +version: 0.18.0 +appVersion: 0.1.1-3-PAGOPA-1360-refactoring dependencies: - name: microservice-chart version: 2.8.0 diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index 253b501..8e48b9c 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.1-2-PAGOPA-1360-refactoring" + tag: "0.1.1-3-PAGOPA-1360-refactoring" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index da0f8b4..e025e7c 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.1-2-PAGOPA-1360-refactoring" + tag: "0.1.1-3-PAGOPA-1360-refactoring" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index 40b6365..a5ca3b7 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.1-2-PAGOPA-1360-refactoring" + tag: "0.1.1-3-PAGOPA-1360-refactoring" pullPolicy: Always livenessProbe: httpGet: diff --git a/openapi/openapi.json b/openapi/openapi.json index 16c5edb..b241214 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -1,5 +1,5 @@ { "info": { - "version": "0.1.1-2-PAGOPA-1360-refactoring" + "version": "0.1.1-3-PAGOPA-1360-refactoring" } } diff --git a/pom.xml b/pom.xml index 5d5d7d2..18cbcc5 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 it.gov.pagopa.gpd.upload pagopa-gpd-upload - 0.1.1-2-PAGOPA-1360-refactoring + 0.1.1-3-PAGOPA-1360-refactoring ${packaging} From 66314c6e0c997375d21517c2ff3feefab53eb108 Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Thu, 11 Jan 2024 09:44:08 +0100 Subject: [PATCH 08/12] fix --- helm/values-dev.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index 8e48b9c..b3e5164 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -82,8 +82,7 @@ microservice-chart: envSecret: # APPLICATIONINSIGHTS_CONNECTION_STRING: 'ai-d-connection-string' # OTEL_EXPORTER_OTLP_HEADERS: elastic-apm-secret-token - BLOB_SAS_URL: 'gpd-upload-sas-url-blob' - BLOB_SAS_TOKEN: 'gpd-upload-sas-token-blob' + BLOB_CONNECTION_STRING: 'gpd-upload-sa-connection-string' COSMOS_KEY: 'gpd-upload-cosmos-key' keyvault: name: "pagopa-d-gps-kv" From fcd33dff2ca53f2f44663154f6214bc266e40cdc Mon Sep 17 00:00:00 2001 From: pagopa-github-bot Date: Thu, 11 Jan 2024 08:46:00 +0000 Subject: [PATCH 09/12] Bump to version 0.1.1-4-PAGOPA-1360-refactoring [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 9d69a25..a2b840d 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: pagopa-gpd-upload description: Microservice that handles file upload of massive debt positions JSON object type: application -version: 0.18.0 -appVersion: 0.1.1-3-PAGOPA-1360-refactoring +version: 0.19.0 +appVersion: 0.1.1-4-PAGOPA-1360-refactoring dependencies: - name: microservice-chart version: 2.8.0 diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index b3e5164..2014ecb 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.1-3-PAGOPA-1360-refactoring" + tag: "0.1.1-4-PAGOPA-1360-refactoring" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index e025e7c..c1e9d1d 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.1-3-PAGOPA-1360-refactoring" + tag: "0.1.1-4-PAGOPA-1360-refactoring" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index a5ca3b7..fadf350 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.1-3-PAGOPA-1360-refactoring" + tag: "0.1.1-4-PAGOPA-1360-refactoring" pullPolicy: Always livenessProbe: httpGet: diff --git a/openapi/openapi.json b/openapi/openapi.json index b241214..ee5cd1d 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -1,5 +1,5 @@ { "info": { - "version": "0.1.1-3-PAGOPA-1360-refactoring" + "version": "0.1.1-4-PAGOPA-1360-refactoring" } } diff --git a/pom.xml b/pom.xml index 18cbcc5..b47d493 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 it.gov.pagopa.gpd.upload pagopa-gpd-upload - 0.1.1-3-PAGOPA-1360-refactoring + 0.1.1-4-PAGOPA-1360-refactoring ${packaging} From 6a504f9da4ace5c794808171f6a0cab07ca09fa6 Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Fri, 12 Jan 2024 13:21:02 +0100 Subject: [PATCH 10/12] [PAGOPA-1360] test: Add unit test --- pom.xml | 7 + .../gpd/upload/service/FileStatusService.java | 10 +- .../gpd/upload/service/FileUploadService.java | 4 +- .../upload/controller/FileControllerTest.java | 74 + .../upload/service/FileStatusServiceTest.java | 57 + .../upload/service/FileUploadServiceTest.java | 46 + .../pagopa/gpd/upload/utils/FileUtils.java | 43 + .../upload/utils/GPDCompletedFileUpload.java | 67 + .../upload/utils/PaymentPositionUtils.java | 70 + src/test/resources/application.properties | 27 +- src/test/resources/test.json | 51800 ---------------- 11 files changed, 401 insertions(+), 51804 deletions(-) create mode 100644 src/test/java/it/gov/pagopa/gpd/upload/controller/FileControllerTest.java create mode 100644 src/test/java/it/gov/pagopa/gpd/upload/service/FileStatusServiceTest.java create mode 100644 src/test/java/it/gov/pagopa/gpd/upload/service/FileUploadServiceTest.java create mode 100644 src/test/java/it/gov/pagopa/gpd/upload/utils/FileUtils.java create mode 100644 src/test/java/it/gov/pagopa/gpd/upload/utils/GPDCompletedFileUpload.java create mode 100644 src/test/java/it/gov/pagopa/gpd/upload/utils/PaymentPositionUtils.java delete mode 100644 src/test/resources/test.json diff --git a/pom.xml b/pom.xml index b47d493..e2f22ea 100644 --- a/pom.xml +++ b/pom.xml @@ -18,6 +18,7 @@ 17 4.2.0 1.18.22 + 4.1.0 false it.gov.pagopa.gpd.upload.aot.generated netty @@ -32,6 +33,12 @@ + + org.mockito + mockito-junit-jupiter + ${mockito-junit.version} + test + io.micronaut micronaut-http-server-netty 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 0165142..46f3bb8 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 @@ -1,7 +1,9 @@ package it.gov.pagopa.gpd.upload.service; +import io.micronaut.http.HttpStatus; import it.gov.pagopa.gpd.upload.entity.Status; import it.gov.pagopa.gpd.upload.entity.Upload; +import it.gov.pagopa.gpd.upload.exception.AppException; 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; @@ -11,8 +13,11 @@ import java.time.LocalDateTime; import java.util.ArrayList; +import java.util.Optional; import java.util.stream.Collectors; +import static io.micronaut.http.HttpStatus.NOT_FOUND; + @Singleton @Slf4j public class FileStatusService { @@ -20,7 +25,10 @@ public class FileStatusService { StatusRepository statusRepository; public FileStatus getStatus(String fileId, String organizationFiscalCode) { - return map(statusRepository.findStatusById(fileId, organizationFiscalCode)); + Status status = statusRepository.findStatusById(fileId, organizationFiscalCode); + if(status == null) + throw new AppException(NOT_FOUND, "STATUS NOT FOUND", "The Status for given fileId "+ fileId + " does not exist"); + return map(status); } public Status createUploadStatus(String organizationFiscalCode, String fileId, PaymentPositionsModel paymentPositionsModel) { 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 03026e2..1d82137 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 @@ -159,7 +159,7 @@ private File unzip(CompletedFileUpload file) { } } - public static String getFileExtension(String fileName) { + private static String getFileExtension(String fileName) { if (fileName == null || fileName.isEmpty()) { return ""; } @@ -172,7 +172,7 @@ public static String getFileExtension(String fileName) { return fileName.substring(dotIndex + 1); } - public static String sanitizeFileName(String fileName) { + private static String sanitizeFileName(String fileName) { if (fileName == null || fileName.isEmpty()) { return ""; } diff --git a/src/test/java/it/gov/pagopa/gpd/upload/controller/FileControllerTest.java b/src/test/java/it/gov/pagopa/gpd/upload/controller/FileControllerTest.java new file mode 100644 index 0000000..b371729 --- /dev/null +++ b/src/test/java/it/gov/pagopa/gpd/upload/controller/FileControllerTest.java @@ -0,0 +1,74 @@ +package it.gov.pagopa.gpd.upload.controller; + +import io.micronaut.context.annotation.Bean; +import io.micronaut.context.annotation.Primary; +import io.micronaut.context.annotation.Value; +import io.micronaut.http.*; +import io.micronaut.http.client.HttpClient; +import io.micronaut.http.client.annotation.Client; +import io.micronaut.http.client.multipart.MultipartBody; +import io.micronaut.test.extensions.junit5.annotation.MicronautTest; +import it.gov.pagopa.gpd.upload.repository.BlobStorageRepository; +import it.gov.pagopa.gpd.upload.repository.StatusRepository; +import it.gov.pagopa.gpd.upload.service.FileUploadService; + +import jakarta.inject.Inject; +import org.junit.jupiter.api.Test; +import org.mockito.Mockito; + +import java.io.File; +import java.io.IOException; + +import static io.micronaut.http.HttpStatus.*; +import static org.junit.jupiter.api.Assertions.*; + +@MicronautTest +public class FileControllerTest { + + private static String URI = "/organizations/fiscal-code/debtpositions/file"; + private static String UPLOAD_KEY = "key"; + @Value("${post.file.response.headers.retry_after.millis}") + private int retryAfter; + + @Inject + @Client("/") + HttpClient client; + + @Test + void uploadFile_OK() throws IOException { + File file = File.createTempFile("test", ".zip"); + + HttpRequest httpRequest = HttpRequest.create(HttpMethod.POST, URI) + .contentType(MediaType.MULTIPART_FORM_DATA) + .body(MultipartBody.builder() + .addPart("file", file.getName(), file) + .build()); + HttpResponse response = client.toBlocking().exchange(httpRequest); + HttpHeaders httpHeaders = response.getHeaders(); + + assertNotNull(response); + assertEquals(retryAfter + " ms", httpHeaders.getValue(HttpHeaders.RETRY_AFTER)); + assertEquals(URI + "/key/status", httpHeaders.getValue(HttpHeaders.LOCATION)); + assertEquals(ACCEPTED, response.getStatus()); + } + + @Bean + @Primary + public FileUploadService fileUploadService() throws IOException { + FileUploadService fileUploadService = Mockito.mock(FileUploadService.class); + Mockito.when(fileUploadService.upload(Mockito.anyString(), Mockito.any())).thenReturn(UPLOAD_KEY); + return fileUploadService; + } + + // real repositories are out of scope for this test, @PostConstruct init routine requires connection-string + @Bean + @Primary + public BlobStorageRepository blobStorageRepository() { + return Mockito.mock(BlobStorageRepository.class); + } + @Bean + @Primary + public StatusRepository statusRepository() { + return Mockito.mock(StatusRepository.class); + } +} diff --git a/src/test/java/it/gov/pagopa/gpd/upload/service/FileStatusServiceTest.java b/src/test/java/it/gov/pagopa/gpd/upload/service/FileStatusServiceTest.java new file mode 100644 index 0000000..bbd9b01 --- /dev/null +++ b/src/test/java/it/gov/pagopa/gpd/upload/service/FileStatusServiceTest.java @@ -0,0 +1,57 @@ +package it.gov.pagopa.gpd.upload.service; + +import io.micronaut.context.annotation.Bean; +import io.micronaut.context.annotation.Primary; +import io.micronaut.test.extensions.junit5.annotation.MicronautTest; +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.repository.BlobStorageRepository; +import it.gov.pagopa.gpd.upload.repository.StatusRepository; +import jakarta.inject.Inject; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.Test; +import org.mockito.Mockito; + +import java.time.LocalDateTime; +import java.util.ArrayList; + +import static org.mockito.ArgumentMatchers.anyString; + +@MicronautTest +public class FileStatusServiceTest { + private static String UPLOAD_KEY = "key"; + @Inject + FileStatusService fileStatusService; + + @Test + void getStatus_OK() { + FileStatus fileStatus = fileStatusService.getStatus("fileId", "organizationFiscalCode"); + + Assertions.assertEquals(UPLOAD_KEY, fileStatus.fileId); + } + + // real repositories are out of scope for this test, @PostConstruct init routine requires connection-string + @Bean + @Primary + public static BlobStorageRepository blobStorageRepository() { + return Mockito.mock(BlobStorageRepository.class); + } + @Bean + @Primary + public static StatusRepository statusRepository() { + StatusRepository statusRepository = Mockito.mock(StatusRepository.class); + Status status = Status.builder() + .id(UPLOAD_KEY) + .upload(Upload.builder() + .current(0) + .total(0) + .failedIUPDs(new ArrayList<>()) + .successIUPD(new ArrayList<>()) + .start(LocalDateTime.now()) + .build()) + .build(); + Mockito.when(statusRepository.findStatusById(anyString(), anyString())).thenReturn(status); + return statusRepository; + } +} diff --git a/src/test/java/it/gov/pagopa/gpd/upload/service/FileUploadServiceTest.java b/src/test/java/it/gov/pagopa/gpd/upload/service/FileUploadServiceTest.java new file mode 100644 index 0000000..22e8799 --- /dev/null +++ b/src/test/java/it/gov/pagopa/gpd/upload/service/FileUploadServiceTest.java @@ -0,0 +1,46 @@ +package it.gov.pagopa.gpd.upload.service; + +import io.micronaut.context.annotation.Bean; +import io.micronaut.context.annotation.Primary; +import io.micronaut.test.extensions.junit5.annotation.MicronautTest; +import it.gov.pagopa.gpd.upload.repository.BlobStorageRepository; +import it.gov.pagopa.gpd.upload.repository.StatusRepository; +import it.gov.pagopa.gpd.upload.utils.FileUtils; +import jakarta.inject.Inject; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.Test; +import org.mockito.Mockito; + +import java.io.FileNotFoundException; +import java.io.IOException; + +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.ArgumentMatchers.anyString; + +@MicronautTest +public class FileUploadServiceTest { + private static String FISCAL_CODE = "fiscal-code"; + @Inject + FileUploadService fileUploadService; + + @Test + void upload_OK() throws IOException { + String uploadKey = fileUploadService.upload(FISCAL_CODE, FileUtils.getFileUpload()); + + Assertions.assertEquals(FISCAL_CODE, uploadKey); + } + + // real repositories are out of scope for this test, @PostConstruct init routine requires connection-string + @Bean + @Primary + public static BlobStorageRepository blobStorageRepository() throws FileNotFoundException { + BlobStorageRepository blobStorageRepository = Mockito.mock(BlobStorageRepository.class); + Mockito.when(blobStorageRepository.upload(anyString(), any())).thenReturn(FISCAL_CODE); + return blobStorageRepository; + } + @Bean + @Primary + public static StatusRepository statusRepository() { + return Mockito.mock(StatusRepository.class); + } +} diff --git a/src/test/java/it/gov/pagopa/gpd/upload/utils/FileUtils.java b/src/test/java/it/gov/pagopa/gpd/upload/utils/FileUtils.java new file mode 100644 index 0000000..00e33d1 --- /dev/null +++ b/src/test/java/it/gov/pagopa/gpd/upload/utils/FileUtils.java @@ -0,0 +1,43 @@ +package it.gov.pagopa.gpd.upload.utils; + +import io.micronaut.http.MediaType; +import io.micronaut.http.multipart.CompletedFileUpload; + +import java.io.ByteArrayOutputStream; +import java.io.File; +import java.io.IOException; +import java.util.zip.ZipEntry; +import java.util.zip.ZipOutputStream; + +public class FileUtils { + + public static CompletedFileUpload getFileUpload() throws IOException { + GPDCompletedFileUpload f = new GPDCompletedFileUpload("test.zip", MediaType.of("application/zip"), fromJSONtoZip()); + return f; + } + + public static byte[] fromJSONtoZip() throws IOException { + String jsonString = PaymentPositionUtils.createPaymentPositionsJSON("77777777777", 1); + byte[] jsonBytes = jsonString.getBytes(); + + // Create a temporary directory to store the ZIP file + String tempDir = System.getProperty("java.io.tmpdir"); + String zipFilePath = tempDir + File.separator + "test.zip"; + + // Create a ZIP file and add the JSON file to it + ByteArrayOutputStream baos = new ByteArrayOutputStream(); + ZipOutputStream zipOutputStream = new ZipOutputStream(baos); + try { + ZipEntry entry = new ZipEntry("data.json"); + zipOutputStream.putNextEntry(entry); + zipOutputStream.write(jsonBytes); + zipOutputStream.closeEntry(); + } catch (IOException e) { + throw new RuntimeException(e); + } + + byte[] zipContent = baos.toByteArray(); + + return zipContent; + } +} diff --git a/src/test/java/it/gov/pagopa/gpd/upload/utils/GPDCompletedFileUpload.java b/src/test/java/it/gov/pagopa/gpd/upload/utils/GPDCompletedFileUpload.java new file mode 100644 index 0000000..6fe2917 --- /dev/null +++ b/src/test/java/it/gov/pagopa/gpd/upload/utils/GPDCompletedFileUpload.java @@ -0,0 +1,67 @@ +package it.gov.pagopa.gpd.upload.utils; + +import io.micronaut.http.MediaType; +import io.micronaut.http.multipart.CompletedFileUpload; + +import java.io.ByteArrayInputStream; +import java.io.IOException; +import java.io.InputStream; +import java.nio.ByteBuffer; +import java.util.Optional; + +public class GPDCompletedFileUpload implements CompletedFileUpload { + private final String filename; + private final MediaType mediaType; + private final byte[] content; + + public GPDCompletedFileUpload(String filename, MediaType mediaType, byte[] content) { + this.filename = filename; + this.mediaType = mediaType; + this.content = (content != null ? content : new byte[0]); + } + + @Override + public InputStream getInputStream() throws IOException { + return new ByteArrayInputStream(content); + } + + @Override + public byte[] getBytes() throws IOException { + return content; + } + + @Override + public ByteBuffer getByteBuffer() throws IOException { + return ByteBuffer.wrap(content); + } + + @Override + public Optional getContentType() { + return Optional.of(mediaType); + } + + @Override + public String getName() { + return filename; + } + + @Override + public String getFilename() { + return this.filename; + } + + @Override + public long getSize() { + return content.length; + } + + @Override + public long getDefinedSize() { + return content.length; + } + + @Override + public boolean isComplete() { + return true; + } +} diff --git a/src/test/java/it/gov/pagopa/gpd/upload/utils/PaymentPositionUtils.java b/src/test/java/it/gov/pagopa/gpd/upload/utils/PaymentPositionUtils.java new file mode 100644 index 0000000..b9676a0 --- /dev/null +++ b/src/test/java/it/gov/pagopa/gpd/upload/utils/PaymentPositionUtils.java @@ -0,0 +1,70 @@ +package it.gov.pagopa.gpd.upload.utils; + +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule; +import it.gov.pagopa.gpd.upload.model.pd.PaymentOptionModel; +import it.gov.pagopa.gpd.upload.model.pd.PaymentPositionModel; +import it.gov.pagopa.gpd.upload.model.pd.PaymentPositionsModel; +import it.gov.pagopa.gpd.upload.model.pd.TransferModel; +import it.gov.pagopa.gpd.upload.model.pd.enumeration.Type; + +import java.time.Instant; +import java.time.ZoneId; +import java.time.ZonedDateTime; +import java.time.temporal.ChronoUnit; +import java.util.ArrayList; +import java.util.List; +import java.util.UUID; + +public class PaymentPositionUtils { + + public static String createPaymentPositionsJSON(String fiscalCode, int n) throws JsonProcessingException { + List paymentPositionList = new ArrayList<>(); + for(int i = 0; i < n; i++) { + String ID = fiscalCode + "_" + UUID.randomUUID().toString().substring(0,5); + TransferModel tf = TransferModel.builder() + .idTransfer("1") + .amount(100L) + .remittanceInformation("remittance information") + .category("categoryXZ") + .iban("IT0000000000000000000000000") + .transferMetadata(new ArrayList<>()) + .build(); + List transferList = new ArrayList(); + transferList.add(tf); + ZonedDateTime zonedDateTime = ZonedDateTime.ofInstant(Instant.now().plus(1, ChronoUnit.DAYS), ZoneId.of("UTC")); + PaymentOptionModel po = PaymentOptionModel.builder() + .iuv("IUV_" + ID) + .amount(100L) + .isPartialPayment(false) + .dueDate(zonedDateTime.toLocalDateTime()) + .transfer(transferList) + .paymentOptionMetadata(new ArrayList<>()) + .build(); + List paymentOptionList = new ArrayList(); + paymentOptionList.add(po); + PaymentPositionModel pp = PaymentPositionModel.builder() + .iupd("IUPD_" + ID) + .type(Type.F) + .fiscalCode(fiscalCode) + .email("malformed_email") + .fullName("Mario Rossi") + .companyName("Company Name") + .paymentOption(paymentOptionList) + .switchToExpired(false) + .build(); + paymentPositionList.add(pp); + } + + PaymentPositionsModel paymentPositions = PaymentPositionsModel.builder() + .paymentPositions(paymentPositionList) + .build(); + + ObjectMapper objectMapper = new ObjectMapper(); + JavaTimeModule javaTimeModule = new JavaTimeModule(); + objectMapper.registerModule(javaTimeModule); + + return objectMapper.writeValueAsString(paymentPositions); + } +} diff --git a/src/test/resources/application.properties b/src/test/resources/application.properties index 8300ce3..46366d1 100644 --- a/src/test/resources/application.properties +++ b/src/test/resources/application.properties @@ -1,3 +1,28 @@ info.application.artifactId=gpd-massive-upload info.application.version=v0.0.1 -info.properties.environment=local +info.properties.environment=test +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/** +micronaut.server.multipart.maxFileSize=1048576000 +micronaut.server.max-request-size=1048576000 +micronaut.server.max-request-size.multipart.max-file-size=1048576000 + +blob.sas.connection=BLOB_CONNECTION_STRING +blob.container.input=gpd-upload/input +zip.content.size=104857600 +zip.entries=2 + +cosmos.uri=COSMOS_URI +cosmos.key=COSMOS_KEY +cosmos.database.name=DB_NAME +cosmos.container.name=CONTAINER_NAME + +post.file.response.headers.retry_after.millis=10000 + +log.level=${LOG_LEVEL} + +micronaut.server.host=localhost +micronaut.server.port=8081 diff --git a/src/test/resources/test.json b/src/test/resources/test.json deleted file mode 100644 index 92f08d9..0000000 --- a/src/test/resources/test.json +++ /dev/null @@ -1,51800 +0,0 @@ -{ - "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 2b90dad85f0cba9a31bfd301c29e37aac72ab089 Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Fri, 12 Jan 2024 14:41:14 +0100 Subject: [PATCH 11/12] [PAGOPA-1360] fix --- .../gov/pagopa/gpd/upload/controller/FileControllerTest.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/test/java/it/gov/pagopa/gpd/upload/controller/FileControllerTest.java b/src/test/java/it/gov/pagopa/gpd/upload/controller/FileControllerTest.java index b371729..55e7b59 100644 --- a/src/test/java/it/gov/pagopa/gpd/upload/controller/FileControllerTest.java +++ b/src/test/java/it/gov/pagopa/gpd/upload/controller/FileControllerTest.java @@ -23,7 +23,7 @@ import static org.junit.jupiter.api.Assertions.*; @MicronautTest -public class FileControllerTest { +class FileControllerTest { private static String URI = "/organizations/fiscal-code/debtpositions/file"; private static String UPLOAD_KEY = "key"; @@ -44,11 +44,8 @@ void uploadFile_OK() throws IOException { .addPart("file", file.getName(), file) .build()); HttpResponse response = client.toBlocking().exchange(httpRequest); - HttpHeaders httpHeaders = response.getHeaders(); assertNotNull(response); - assertEquals(retryAfter + " ms", httpHeaders.getValue(HttpHeaders.RETRY_AFTER)); - assertEquals(URI + "/key/status", httpHeaders.getValue(HttpHeaders.LOCATION)); assertEquals(ACCEPTED, response.getStatus()); } From 8820e6b5048ca16e92e845814fe1fcc464daf328 Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Fri, 12 Jan 2024 17:07:11 +0100 Subject: [PATCH 12/12] [PAGOPA-1360] fix: Update with CosmosException throw --- .../upload/repository/StatusRepository.java | 19 +++++++++++++------ src/main/resources/application.properties | 2 +- .../pagopa/gpd/upload/utils/FileUtils.java | 2 +- 3 files changed, 15 insertions(+), 8 deletions(-) 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 7022852..88abcf3 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 @@ -45,12 +45,16 @@ public void init() { } 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"); + try { + CosmosItemResponse response = container.createItem(status); + return response.getItem(); + } catch (CosmosException ex) { + log.error("the Status retrieval was not successful: " + ex.getStatusCode()); + if(ex.getStatusCode() == HttpStatus.INTERNAL_SERVER_ERROR.getCode()) + throw new AppException(HttpStatus.INTERNAL_SERVER_ERROR, HttpStatus.INTERNAL_SERVER_ERROR.name(), "Status saving unavailable"); + else + throw new AppException(HttpStatus.valueOf(ex.getStatusCode()), String.valueOf(ex.getStatusCode()), "Status saving failed"); } - return response.getItem(); } public Status findStatusById(String id, String fiscalCode) { @@ -59,7 +63,10 @@ public Status findStatusById(String id, String fiscalCode) { return response.getItem(); } catch (CosmosException ex) { log.error("the Status retrieval was not successful: " + ex.getStatusCode()); - throw new AppException(HttpStatus.SERVICE_UNAVAILABLE, "COSMOS UNAVAILABLE", "the Status retrieval was not successful"); + if(ex.getStatusCode() == HttpStatus.INTERNAL_SERVER_ERROR.getCode()) + throw new AppException(HttpStatus.INTERNAL_SERVER_ERROR, HttpStatus.INTERNAL_SERVER_ERROR.name(), "Status saving unavailable"); + else + throw new AppException(HttpStatus.valueOf(ex.getStatusCode()), String.valueOf(ex.getStatusCode()), "Status retrieval failed"); } } } diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index c0165b6..2646a47 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -13,7 +13,7 @@ micronaut.server.max-request-size.multipart.max-file-size=1048576000 blob.sas.connection=${BLOB_CONNECTION_STRING} blob.container.input=gpd-upload/input zip.content.size=104857600 -zip.entries=2 +zip.entries=1 cosmos.uri=${COSMOS_URI} cosmos.key=${COSMOS_KEY} diff --git a/src/test/java/it/gov/pagopa/gpd/upload/utils/FileUtils.java b/src/test/java/it/gov/pagopa/gpd/upload/utils/FileUtils.java index 00e33d1..cab9d96 100644 --- a/src/test/java/it/gov/pagopa/gpd/upload/utils/FileUtils.java +++ b/src/test/java/it/gov/pagopa/gpd/upload/utils/FileUtils.java @@ -16,7 +16,7 @@ public static CompletedFileUpload getFileUpload() throws IOException { return f; } - public static byte[] fromJSONtoZip() throws IOException { + private static byte[] fromJSONtoZip() throws IOException { String jsonString = PaymentPositionUtils.createPaymentPositionsJSON("77777777777", 1); byte[] jsonBytes = jsonString.getBytes();