@@ -523,7 +523,7 @@ try {
523523## ` joinIssuedDocuments() `
524524
525525``` php
526- joinIssuedDocuments($company_id, $ids, $group, $parameter ): \FattureInCloud\Model\JoinIssuedDocumentsResponse
526+ joinIssuedDocuments($company_id, $ids, $group, $e_invoice ): \FattureInCloud\Model\JoinIssuedDocumentsResponse
527527```
528528
529529Join Issued Documents
@@ -550,10 +550,10 @@ $apiInstance = new FattureInCloud\Api\IssuedDocumentsApi(
550550$company_id = 12345; // int | The ID of the company.
551551$ids = 1,2,3,4; // string | Ids of the documents.
552552$group = 56; // int | Group items.
553- $parameter = delivery_notes, orders, quotes, work_reports ; // string | Type of the parameters to be joined
553+ $e_invoice = 56 ; // int | New document e_invoice.
554554
555555try {
556- $result = $apiInstance->joinIssuedDocuments($company_id, $ids, $group, $parameter );
556+ $result = $apiInstance->joinIssuedDocuments($company_id, $ids, $group, $e_invoice );
557557 print_r($result);
558558} catch (Exception $e) {
559559 echo 'Exception when calling IssuedDocumentsApi->joinIssuedDocuments: ', $e->getMessage(), PHP_EOL;
@@ -567,7 +567,7 @@ try {
567567| ** company_id** | ** int** | The ID of the company. | |
568568| ** ids** | ** string** | Ids of the documents. | |
569569| ** group** | ** int** | Group items. | [ optional] |
570- | ** parameter ** | ** string ** | Type of the parameters to be joined | [ optional] |
570+ | ** e_invoice ** | ** int ** | New document e_invoice. | [ optional] |
571571
572572### Return type
573573
@@ -792,7 +792,7 @@ void (empty response body)
792792## ` transformIssuedDocument() `
793793
794794``` php
795- transformIssuedDocument($company_id, $original_document_id, $new_type, $parameter, $ e_invoice, $transform_keep_copy): \FattureInCloud\Model\TransformIssuedDocumentResponse
795+ transformIssuedDocument($company_id, $original_document_id, $new_type, $e_invoice, $transform_keep_copy): \FattureInCloud\Model\TransformIssuedDocumentResponse
796796```
797797
798798Transform Issued Document
@@ -819,12 +819,11 @@ $apiInstance = new FattureInCloud\Api\IssuedDocumentsApi(
819819$company_id = 12345; // int | The ID of the company.
820820$original_document_id = 56; // int | Original document id.
821821$new_type = 'new_type_example'; // string | New document type.
822- $parameter = 'parameter_example'; // string | Old document type.
823822$e_invoice = 56; // int | New document e_invoice.
824823$transform_keep_copy = 56; // int | Keep the old document.
825824
826825try {
827- $result = $apiInstance->transformIssuedDocument($company_id, $original_document_id, $new_type, $parameter, $ e_invoice, $transform_keep_copy);
826+ $result = $apiInstance->transformIssuedDocument($company_id, $original_document_id, $new_type, $e_invoice, $transform_keep_copy);
828827 print_r($result);
829828} catch (Exception $e) {
830829 echo 'Exception when calling IssuedDocumentsApi->transformIssuedDocument: ', $e->getMessage(), PHP_EOL;
@@ -838,7 +837,6 @@ try {
838837| ** company_id** | ** int** | The ID of the company. | |
839838| ** original_document_id** | ** int** | Original document id. | |
840839| ** new_type** | ** string** | New document type. | |
841- | ** parameter** | ** string** | Old document type. | [ optional] |
842840| ** e_invoice** | ** int** | New document e_invoice. | [ optional] |
843841| ** transform_keep_copy** | ** int** | Keep the old document. | [ optional] |
844842
0 commit comments