@@ -523,7 +523,7 @@ try {
523
523
## ` joinIssuedDocuments() `
524
524
525
525
``` php
526
- joinIssuedDocuments($company_id, $ids, $group, $e_invoice ): \FattureInCloud\Model\JoinIssuedDocumentsResponse
526
+ joinIssuedDocuments($company_id, $ids, $group, $parameter ): \FattureInCloud\Model\JoinIssuedDocumentsResponse
527
527
```
528
528
529
529
Join Issued Documents
@@ -550,10 +550,10 @@ $apiInstance = new FattureInCloud\Api\IssuedDocumentsApi(
550
550
$company_id = 12345; // int | The ID of the company.
551
551
$ids = 1,2,3,4; // string | Ids of the documents.
552
552
$group = 56; // int | Group items.
553
- $e_invoice = 56 ; // int | New document e_invoice.
553
+ $parameter = delivery_notes, orders, quotes, work_reports ; // string | Type of the parameters to be joined
554
554
555
555
try {
556
- $result = $apiInstance->joinIssuedDocuments($company_id, $ids, $group, $e_invoice );
556
+ $result = $apiInstance->joinIssuedDocuments($company_id, $ids, $group, $parameter );
557
557
print_r($result);
558
558
} catch (Exception $e) {
559
559
echo 'Exception when calling IssuedDocumentsApi->joinIssuedDocuments: ', $e->getMessage(), PHP_EOL;
@@ -567,7 +567,7 @@ try {
567
567
| ** company_id** | ** int** | The ID of the company. | |
568
568
| ** ids** | ** string** | Ids of the documents. | |
569
569
| ** group** | ** int** | Group items. | [ optional] |
570
- | ** e_invoice ** | ** int ** | New document e_invoice. | [ optional] |
570
+ | ** parameter ** | ** string ** | Type of the parameters to be joined | [ optional] |
571
571
572
572
### Return type
573
573
@@ -792,7 +792,7 @@ void (empty response body)
792
792
## ` transformIssuedDocument() `
793
793
794
794
``` php
795
- transformIssuedDocument($company_id, $original_document_id, $new_type, $e_invoice, $transform_keep_copy): \FattureInCloud\Model\TransformIssuedDocumentResponse
795
+ transformIssuedDocument($company_id, $original_document_id, $new_type, $parameter, $ e_invoice, $transform_keep_copy): \FattureInCloud\Model\TransformIssuedDocumentResponse
796
796
```
797
797
798
798
Transform Issued Document
@@ -819,11 +819,12 @@ $apiInstance = new FattureInCloud\Api\IssuedDocumentsApi(
819
819
$company_id = 12345; // int | The ID of the company.
820
820
$original_document_id = 56; // int | Original document id.
821
821
$new_type = 'new_type_example'; // string | New document type.
822
+ $parameter = 'parameter_example'; // string | Old document type.
822
823
$e_invoice = 56; // int | New document e_invoice.
823
824
$transform_keep_copy = 56; // int | Keep the old document.
824
825
825
826
try {
826
- $result = $apiInstance->transformIssuedDocument($company_id, $original_document_id, $new_type, $e_invoice, $transform_keep_copy);
827
+ $result = $apiInstance->transformIssuedDocument($company_id, $original_document_id, $new_type, $parameter, $ e_invoice, $transform_keep_copy);
827
828
print_r($result);
828
829
} catch (Exception $e) {
829
830
echo 'Exception when calling IssuedDocumentsApi->transformIssuedDocument: ', $e->getMessage(), PHP_EOL;
@@ -837,6 +838,7 @@ try {
837
838
| ** company_id** | ** int** | The ID of the company. | |
838
839
| ** original_document_id** | ** int** | Original document id. | |
839
840
| ** new_type** | ** string** | New document type. | |
841
+ | ** parameter** | ** string** | Old document type. | [ optional] |
840
842
| ** e_invoice** | ** int** | New document e_invoice. | [ optional] |
841
843
| ** transform_keep_copy** | ** int** | Keep the old document. | [ optional] |
842
844
0 commit comments