Skip to content

Commit 5cca3cd

Browse files
authored
fix: fixed missing end of line
2 parents b0fd90e + ef0aa9c commit 5cca3cd

16 files changed

+398
-107
lines changed

docs/Api/ArchiveApi.md

Lines changed: 27 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ $apiInstance = new FattureInCloud\Api\ArchiveApi(
3939
new GuzzleHttp\Client(),
4040
$config
4141
);
42-
$company_id = 12345; // int | The ID of the company.$create_archive_document_request = new \FattureInCloud\Model\CreateArchiveDocumentRequest; // \FattureInCloud\Model\CreateArchiveDocumentRequest | The Archive Document.
42+
$company_id = 12345; // int | The ID of the company.
43+
$create_archive_document_request = new \FattureInCloud\Model\CreateArchiveDocumentRequest; // \FattureInCloud\Model\CreateArchiveDocumentRequest | The Archive Document.
44+
4345
try {
4446
$result = $apiInstance->createArchiveDocument($company_id, $create_archive_document_request);
4547
print_r($result);
@@ -99,7 +101,9 @@ $apiInstance = new FattureInCloud\Api\ArchiveApi(
99101
new GuzzleHttp\Client(),
100102
$config
101103
);
102-
$company_id = 12345; // int | The ID of the company.$document_id = 56; // int | The ID of the document.
104+
$company_id = 12345; // int | The ID of the company.
105+
$document_id = 56; // int | The ID of the document.
106+
103107
try {
104108
$apiInstance->deleteArchiveDocument($company_id, $document_id);
105109
} catch (Exception $e) {
@@ -158,7 +162,11 @@ $apiInstance = new FattureInCloud\Api\ArchiveApi(
158162
new GuzzleHttp\Client(),
159163
$config
160164
);
161-
$company_id = 12345; // int | The ID of the company.$document_id = 56; // int | The ID of the document.$fields = 'fields_example'; // string | List of comma-separated fields.$fieldset = 'fieldset_example'; // string | Name of the fieldset.
165+
$company_id = 12345; // int | The ID of the company.
166+
$document_id = 56; // int | The ID of the document.
167+
$fields = 'fields_example'; // string | List of comma-separated fields.
168+
$fieldset = 'fieldset_example'; // string | Name of the fieldset.
169+
162170
try {
163171
$result = $apiInstance->getArchiveDocument($company_id, $document_id, $fields, $fieldset);
164172
print_r($result);
@@ -220,7 +228,14 @@ $apiInstance = new FattureInCloud\Api\ArchiveApi(
220228
new GuzzleHttp\Client(),
221229
$config
222230
);
223-
$company_id = 12345; // int | The ID of the company.$fields = 'fields_example'; // string | List of comma-separated fields.$fieldset = 'fieldset_example'; // string | Name of the fieldset.$sort = 'sort_example'; // string | List of comma-separated fields for result sorting (minus for desc sorting).$page = 1; // int | The page to retrieve.$per_page = 5; // int | The size of the page.$q = 'q_example'; // string | Query for filtering the results.
231+
$company_id = 12345; // int | The ID of the company.
232+
$fields = 'fields_example'; // string | List of comma-separated fields.
233+
$fieldset = 'fieldset_example'; // string | Name of the fieldset.
234+
$sort = 'sort_example'; // string | List of comma-separated fields for result sorting (minus for desc sorting).
235+
$page = 1; // int | The page to retrieve.
236+
$per_page = 5; // int | The size of the page.
237+
$q = 'q_example'; // string | Query for filtering the results.
238+
224239
try {
225240
$result = $apiInstance->listArchiveDocuments($company_id, $fields, $fieldset, $sort, $page, $per_page, $q);
226241
print_r($result);
@@ -285,7 +300,10 @@ $apiInstance = new FattureInCloud\Api\ArchiveApi(
285300
new GuzzleHttp\Client(),
286301
$config
287302
);
288-
$company_id = 12345; // int | The ID of the company.$document_id = 56; // int | The ID of the document.$modify_archive_document_request = new \FattureInCloud\Model\ModifyArchiveDocumentRequest; // \FattureInCloud\Model\ModifyArchiveDocumentRequest | Modified Archive Document
303+
$company_id = 12345; // int | The ID of the company.
304+
$document_id = 56; // int | The ID of the document.
305+
$modify_archive_document_request = new \FattureInCloud\Model\ModifyArchiveDocumentRequest; // \FattureInCloud\Model\ModifyArchiveDocumentRequest | Modified Archive Document
306+
289307
try {
290308
$result = $apiInstance->modifyArchiveDocument($company_id, $document_id, $modify_archive_document_request);
291309
print_r($result);
@@ -346,7 +364,10 @@ $apiInstance = new FattureInCloud\Api\ArchiveApi(
346364
new GuzzleHttp\Client(),
347365
$config
348366
);
349-
$company_id = 12345; // int | The ID of the company.$filename = 'filename_example'; // string | Attachment file name$attachment = "/path/to/file.txt"; // \SplFileObject | Attachment file [.png, .jpg, .gif, .pdf, .zip, .xls, .xlsx, .doc, .docx]
367+
$company_id = 12345; // int | The ID of the company.
368+
$filename = 'filename_example'; // string | Attachment file name
369+
$attachment = "/path/to/file.txt"; // \SplFileObject | Attachment file [.png, .jpg, .gif, .pdf, .zip, .xls, .xlsx, .doc, .docx]
370+
350371
try {
351372
$result = $apiInstance->uploadArchiveDocumentAttachment($company_id, $filename, $attachment);
352373
print_r($result);

docs/Api/CashbookApi.md

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ $apiInstance = new FattureInCloud\Api\CashbookApi(
3838
new GuzzleHttp\Client(),
3939
$config
4040
);
41-
$company_id = 12345; // int | The ID of the company.$create_cashbook_entry_request = new \FattureInCloud\Model\CreateCashbookEntryRequest; // \FattureInCloud\Model\CreateCashbookEntryRequest | Cashbook entry.
41+
$company_id = 12345; // int | The ID of the company.
42+
$create_cashbook_entry_request = new \FattureInCloud\Model\CreateCashbookEntryRequest; // \FattureInCloud\Model\CreateCashbookEntryRequest | Cashbook entry.
43+
4244
try {
4345
$result = $apiInstance->createCashbookEntry($company_id, $create_cashbook_entry_request);
4446
print_r($result);
@@ -98,7 +100,9 @@ $apiInstance = new FattureInCloud\Api\CashbookApi(
98100
new GuzzleHttp\Client(),
99101
$config
100102
);
101-
$company_id = 12345; // int | The ID of the company.$document_id = 'document_id_example'; // string | The ID of the document.
103+
$company_id = 12345; // int | The ID of the company.
104+
$document_id = 'document_id_example'; // string | The ID of the document.
105+
102106
try {
103107
$apiInstance->deleteCashbookEntry($company_id, $document_id);
104108
} catch (Exception $e) {
@@ -157,7 +161,11 @@ $apiInstance = new FattureInCloud\Api\CashbookApi(
157161
new GuzzleHttp\Client(),
158162
$config
159163
);
160-
$company_id = 12345; // int | The ID of the company.$document_id = 'document_id_example'; // string | The ID of the document.$fields = 'fields_example'; // string | List of comma-separated fields.$fieldset = 'fieldset_example'; // string | Name of the fieldset.
164+
$company_id = 12345; // int | The ID of the company.
165+
$document_id = 'document_id_example'; // string | The ID of the document.
166+
$fields = 'fields_example'; // string | List of comma-separated fields.
167+
$fieldset = 'fieldset_example'; // string | Name of the fieldset.
168+
161169
try {
162170
$result = $apiInstance->getCashbookEntry($company_id, $document_id, $fields, $fieldset);
163171
print_r($result);
@@ -219,7 +227,13 @@ $apiInstance = new FattureInCloud\Api\CashbookApi(
219227
new GuzzleHttp\Client(),
220228
$config
221229
);
222-
$company_id = 12345; // int | The ID of the company.$date_from = 'date_from_example'; // string | Start date.$date_to = 'date_to_example'; // string | End date.$year = 56; // int | Filter cashbook by year.$type = 'type_example'; // string | Filter cashbook by type.$payment_account_id = 56; // int | Filter by payment account.
230+
$company_id = 12345; // int | The ID of the company.
231+
$date_from = 'date_from_example'; // string | Start date.
232+
$date_to = 'date_to_example'; // string | End date.
233+
$year = 56; // int | Filter cashbook by year.
234+
$type = 'type_example'; // string | Filter cashbook by type.
235+
$payment_account_id = 56; // int | Filter by payment account.
236+
223237
try {
224238
$result = $apiInstance->listCashbookEntries($company_id, $date_from, $date_to, $year, $type, $payment_account_id);
225239
print_r($result);
@@ -283,7 +297,10 @@ $apiInstance = new FattureInCloud\Api\CashbookApi(
283297
new GuzzleHttp\Client(),
284298
$config
285299
);
286-
$company_id = 12345; // int | The ID of the company.$document_id = 'document_id_example'; // string | The ID of the document.$modify_cashbook_entry_request = new \FattureInCloud\Model\ModifyCashbookEntryRequest; // \FattureInCloud\Model\ModifyCashbookEntryRequest | Cashbook Entry
300+
$company_id = 12345; // int | The ID of the company.
301+
$document_id = 'document_id_example'; // string | The ID of the document.
302+
$modify_cashbook_entry_request = new \FattureInCloud\Model\ModifyCashbookEntryRequest; // \FattureInCloud\Model\ModifyCashbookEntryRequest | Cashbook Entry
303+
287304
try {
288305
$result = $apiInstance->modifyCashbookEntry($company_id, $document_id, $modify_cashbook_entry_request);
289306
print_r($result);

docs/Api/ClientsApi.md

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ $apiInstance = new FattureInCloud\Api\ClientsApi(
3838
new GuzzleHttp\Client(),
3939
$config
4040
);
41-
$company_id = 12345; // int | The ID of the company.$create_client_request = new \FattureInCloud\Model\CreateClientRequest; // \FattureInCloud\Model\CreateClientRequest | The client to create
41+
$company_id = 12345; // int | The ID of the company.
42+
$create_client_request = new \FattureInCloud\Model\CreateClientRequest; // \FattureInCloud\Model\CreateClientRequest | The client to create
43+
4244
try {
4345
$result = $apiInstance->createClient($company_id, $create_client_request);
4446
print_r($result);
@@ -98,7 +100,9 @@ $apiInstance = new FattureInCloud\Api\ClientsApi(
98100
new GuzzleHttp\Client(),
99101
$config
100102
);
101-
$company_id = 12345; // int | The ID of the company.$client_id = 56; // int | The ID of the client.
103+
$company_id = 12345; // int | The ID of the company.
104+
$client_id = 56; // int | The ID of the client.
105+
102106
try {
103107
$apiInstance->deleteClient($company_id, $client_id);
104108
} catch (Exception $e) {
@@ -157,7 +161,11 @@ $apiInstance = new FattureInCloud\Api\ClientsApi(
157161
new GuzzleHttp\Client(),
158162
$config
159163
);
160-
$company_id = 12345; // int | The ID of the company.$client_id = 56; // int | The ID of the client.$fields = 'fields_example'; // string | List of comma-separated fields.$fieldset = 'fieldset_example'; // string | Name of the fieldset.
164+
$company_id = 12345; // int | The ID of the company.
165+
$client_id = 56; // int | The ID of the client.
166+
$fields = 'fields_example'; // string | List of comma-separated fields.
167+
$fieldset = 'fieldset_example'; // string | Name of the fieldset.
168+
161169
try {
162170
$result = $apiInstance->getClient($company_id, $client_id, $fields, $fieldset);
163171
print_r($result);
@@ -219,7 +227,14 @@ $apiInstance = new FattureInCloud\Api\ClientsApi(
219227
new GuzzleHttp\Client(),
220228
$config
221229
);
222-
$company_id = 12345; // int | The ID of the company.$fields = 'fields_example'; // string | List of comma-separated fields.$fieldset = 'fieldset_example'; // string | Name of the fieldset.$sort = 'sort_example'; // string | List of comma-separated fields for result sorting (minus for desc sorting).$page = 1; // int | The page to retrieve.$per_page = 5; // int | The size of the page.$q = 'q_example'; // string | Query for filtering the results.
230+
$company_id = 12345; // int | The ID of the company.
231+
$fields = 'fields_example'; // string | List of comma-separated fields.
232+
$fieldset = 'fieldset_example'; // string | Name of the fieldset.
233+
$sort = 'sort_example'; // string | List of comma-separated fields for result sorting (minus for desc sorting).
234+
$page = 1; // int | The page to retrieve.
235+
$per_page = 5; // int | The size of the page.
236+
$q = 'q_example'; // string | Query for filtering the results.
237+
223238
try {
224239
$result = $apiInstance->listClients($company_id, $fields, $fieldset, $sort, $page, $per_page, $q);
225240
print_r($result);
@@ -284,7 +299,10 @@ $apiInstance = new FattureInCloud\Api\ClientsApi(
284299
new GuzzleHttp\Client(),
285300
$config
286301
);
287-
$company_id = 12345; // int | The ID of the company.$client_id = 56; // int | The ID of the client.$modify_client_request = new \FattureInCloud\Model\ModifyClientRequest; // \FattureInCloud\Model\ModifyClientRequest | The modified Client. First level parameters are managed in delta mode.
302+
$company_id = 12345; // int | The ID of the company.
303+
$client_id = 56; // int | The ID of the client.
304+
$modify_client_request = new \FattureInCloud\Model\ModifyClientRequest; // \FattureInCloud\Model\ModifyClientRequest | The modified Client. First level parameters are managed in delta mode.
305+
288306
try {
289307
$result = $apiInstance->modifyClient($company_id, $client_id, $modify_client_request);
290308
print_r($result);

docs/Api/CompaniesApi.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ $apiInstance = new FattureInCloud\Api\CompaniesApi(
3535
new GuzzleHttp\Client(),
3636
$config
3737
);
38-
$company_id = 12345; // int | The ID of the company.
38+
$company_id = 12345; // int | The ID of the company.
39+
3940
try {
4041
$result = $apiInstance->getCompanyInfo($company_id);
4142
print_r($result);
@@ -94,7 +95,9 @@ $apiInstance = new FattureInCloud\Api\CompaniesApi(
9495
new GuzzleHttp\Client(),
9596
$config
9697
);
97-
$company_id = 12345; // int | The ID of the company.$category = 'category_example'; // string | Category
98+
$company_id = 12345; // int | The ID of the company.
99+
$category = 'category_example'; // string | Category
100+
98101
try {
99102
$result = $apiInstance->getCompanyPlanUsage($company_id, $category);
100103
print_r($result);

docs/Api/EmailsApi.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ $apiInstance = new FattureInCloud\Api\EmailsApi(
3434
new GuzzleHttp\Client(),
3535
$config
3636
);
37-
$company_id = 12345; // int | The ID of the company.
37+
$company_id = 12345; // int | The ID of the company.
38+
3839
try {
3940
$result = $apiInstance->listEmails($company_id);
4041
print_r($result);

docs/Api/InfoApi.md

Lines changed: 36 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ $apiInstance = new FattureInCloud\Api\InfoApi(
4949
new GuzzleHttp\Client(),
5050
$config
5151
);
52-
$company_id = 12345; // int | The ID of the company.
52+
$company_id = 12345; // int | The ID of the company.
53+
5354
try {
5455
$result = $apiInstance->listArchiveCategories($company_id);
5556
print_r($result);
@@ -108,7 +109,9 @@ $apiInstance = new FattureInCloud\Api\InfoApi(
108109
new GuzzleHttp\Client(),
109110
$config
110111
);
111-
$postal_code = 'postal_code_example'; // string | Postal code for filtering.$city = 'city_example'; // string | City for filtering (ignored if postal_code is passed).
112+
$postal_code = 'postal_code_example'; // string | Postal code for filtering.
113+
$city = 'city_example'; // string | City for filtering (ignored if postal_code is passed).
114+
112115
try {
113116
$result = $apiInstance->listCities($postal_code, $city);
114117
print_r($result);
@@ -168,7 +171,8 @@ $apiInstance = new FattureInCloud\Api\InfoApi(
168171
new GuzzleHttp\Client(),
169172
$config
170173
);
171-
$company_id = 12345; // int | The ID of the company.
174+
$company_id = 12345; // int | The ID of the company.
175+
172176
try {
173177
$result = $apiInstance->listCostCenters($company_id);
174178
print_r($result);
@@ -227,7 +231,7 @@ $apiInstance = new FattureInCloud\Api\InfoApi(
227231
new GuzzleHttp\Client(),
228232
$config
229233
);
230-
234+
231235
try {
232236
$result = $apiInstance->listCountries();
233237
print_r($result);
@@ -284,7 +288,7 @@ $apiInstance = new FattureInCloud\Api\InfoApi(
284288
new GuzzleHttp\Client(),
285289
$config
286290
);
287-
291+
288292
try {
289293
$result = $apiInstance->listCurrencies();
290294
print_r($result);
@@ -341,7 +345,7 @@ $apiInstance = new FattureInCloud\Api\InfoApi(
341345
new GuzzleHttp\Client(),
342346
$config
343347
);
344-
348+
345349
try {
346350
$result = $apiInstance->listDeliveryNotesDefaultCausals();
347351
print_r($result);
@@ -398,7 +402,7 @@ $apiInstance = new FattureInCloud\Api\InfoApi(
398402
new GuzzleHttp\Client(),
399403
$config
400404
);
401-
405+
402406
try {
403407
$result = $apiInstance->listDetailedCountries();
404408
print_r($result);
@@ -455,7 +459,7 @@ $apiInstance = new FattureInCloud\Api\InfoApi(
455459
new GuzzleHttp\Client(),
456460
$config
457461
);
458-
462+
459463
try {
460464
$result = $apiInstance->listLanguages();
461465
print_r($result);
@@ -512,7 +516,11 @@ $apiInstance = new FattureInCloud\Api\InfoApi(
512516
new GuzzleHttp\Client(),
513517
$config
514518
);
515-
$company_id = 12345; // int | The ID of the company.$fields = 'fields_example'; // string | List of comma-separated fields.$fieldset = 'fieldset_example'; // string | Name of the fieldset.$sort = 'sort_example'; // string | List of comma-separated fields for result sorting (minus for desc sorting).
519+
$company_id = 12345; // int | The ID of the company.
520+
$fields = 'fields_example'; // string | List of comma-separated fields.
521+
$fieldset = 'fieldset_example'; // string | Name of the fieldset.
522+
$sort = 'sort_example'; // string | List of comma-separated fields for result sorting (minus for desc sorting).
523+
516524
try {
517525
$result = $apiInstance->listPaymentAccounts($company_id, $fields, $fieldset, $sort);
518526
print_r($result);
@@ -574,7 +582,11 @@ $apiInstance = new FattureInCloud\Api\InfoApi(
574582
new GuzzleHttp\Client(),
575583
$config
576584
);
577-
$company_id = 12345; // int | The ID of the company.$fields = 'fields_example'; // string | List of comma-separated fields.$fieldset = 'fieldset_example'; // string | Name of the fieldset.$sort = 'sort_example'; // string | List of comma-separated fields for result sorting (minus for desc sorting).
585+
$company_id = 12345; // int | The ID of the company.
586+
$fields = 'fields_example'; // string | List of comma-separated fields.
587+
$fieldset = 'fieldset_example'; // string | Name of the fieldset.
588+
$sort = 'sort_example'; // string | List of comma-separated fields for result sorting (minus for desc sorting).
589+
578590
try {
579591
$result = $apiInstance->listPaymentMethods($company_id, $fields, $fieldset, $sort);
580592
print_r($result);
@@ -636,7 +648,9 @@ $apiInstance = new FattureInCloud\Api\InfoApi(
636648
new GuzzleHttp\Client(),
637649
$config
638650
);
639-
$company_id = 12345; // int | The ID of the company.$context = 'context_example'; // string | Categories resource type.
651+
$company_id = 12345; // int | The ID of the company.
652+
$context = 'context_example'; // string | Categories resource type.
653+
640654
try {
641655
$result = $apiInstance->listProductCategories($company_id, $context);
642656
print_r($result);
@@ -696,7 +710,8 @@ $apiInstance = new FattureInCloud\Api\InfoApi(
696710
new GuzzleHttp\Client(),
697711
$config
698712
);
699-
$company_id = 12345; // int | The ID of the company.
713+
$company_id = 12345; // int | The ID of the company.
714+
700715
try {
701716
$result = $apiInstance->listReceivedDocumentCategories($company_id);
702717
print_r($result);
@@ -755,7 +770,8 @@ $apiInstance = new FattureInCloud\Api\InfoApi(
755770
new GuzzleHttp\Client(),
756771
$config
757772
);
758-
$company_id = 12345; // int | The ID of the company.
773+
$company_id = 12345; // int | The ID of the company.
774+
759775
try {
760776
$result = $apiInstance->listRevenueCenters($company_id);
761777
print_r($result);
@@ -814,7 +830,9 @@ $apiInstance = new FattureInCloud\Api\InfoApi(
814830
new GuzzleHttp\Client(),
815831
$config
816832
);
817-
$type = 'all'; // string | Type of the templates.$by_type = false; // bool | [Only if type=all] If true, splits the list in objects, grouping templates by type.
833+
$type = 'all'; // string | Type of the templates.
834+
$by_type = false; // bool | [Only if type=all] If true, splits the list in objects, grouping templates by type.
835+
818836
try {
819837
$result = $apiInstance->listTemplates($type, $by_type);
820838
print_r($result);
@@ -874,7 +892,7 @@ $apiInstance = new FattureInCloud\Api\InfoApi(
874892
new GuzzleHttp\Client(),
875893
$config
876894
);
877-
895+
878896
try {
879897
$result = $apiInstance->listUnitsOfMeasure();
880898
print_r($result);
@@ -931,7 +949,9 @@ $apiInstance = new FattureInCloud\Api\InfoApi(
931949
new GuzzleHttp\Client(),
932950
$config
933951
);
934-
$company_id = 12345; // int | The ID of the company.$fieldset = 'fieldset_example'; // string | Name of the fieldset.
952+
$company_id = 12345; // int | The ID of the company.
953+
$fieldset = 'fieldset_example'; // string | Name of the fieldset.
954+
935955
try {
936956
$result = $apiInstance->listVatTypes($company_id, $fieldset);
937957
print_r($result);

0 commit comments

Comments
 (0)