fattureincloud_ruby_sdk 2.0.6 → 2.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +2 -0
- data/README.md +37 -37
- data/docs/Client.md +3 -0
- data/docs/Entity.md +3 -0
- data/fattureincloud_ruby_sdk.gemspec +1 -1
- data/lib/fattureincloud_ruby_sdk/api/archive_api.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/api/cashbook_api.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/api/clients_api.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/api/companies_api.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/api/info_api.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/api/issued_documents_api.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/api/issued_e_invoices_api.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/api/products_api.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/api/receipts_api.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/api/received_documents_api.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/api/settings_api.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/api/suppliers_api.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/api/taxes_api.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/api/user_api.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/api_client.rb +2 -2
- data/lib/fattureincloud_ruby_sdk/api_error.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/configuration.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/filter/condition.rb +55 -0
- data/lib/fattureincloud_ruby_sdk/filter/conjunction.rb +37 -0
- data/lib/fattureincloud_ruby_sdk/filter/disjunction.rb +37 -0
- data/lib/fattureincloud_ruby_sdk/filter/expression.rb +10 -0
- data/lib/fattureincloud_ruby_sdk/filter/filter.rb +144 -0
- data/lib/fattureincloud_ruby_sdk/filter/operator.rb +29 -0
- data/lib/fattureincloud_ruby_sdk/models/archive_document.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/attachment_data.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/cashbook_entry.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/cashbook_entry_document.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/cashbook_entry_kind.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/cashbook_entry_type.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/city.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/client.rb +34 -2
- data/lib/fattureincloud_ruby_sdk/models/client_type.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/company.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/company_info.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/company_info_access_info.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/company_info_plan_info.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/company_info_plan_info_functions.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/company_info_plan_info_functions_status.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/company_info_plan_info_limits.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/company_type.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/controlled_company.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_archive_document_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_archive_document_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_cashbook_entry_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_cashbook_entry_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_client_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_client_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_f24_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_f24_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_issued_document_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_issued_document_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_payment_account_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_payment_account_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_payment_method_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_payment_method_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_product_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_product_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_receipt_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_receipt_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_received_document_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_received_document_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_supplier_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_supplier_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_vat_type_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/create_vat_type_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/currency.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/default_payment_terms_type.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/detailed_country.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/document_template.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/e_invoice_rejection_reason.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/email_data.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/email_data_default_sender_email.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/email_schedule.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/email_schedule_include.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/entity.rb +34 -2
- data/lib/fattureincloud_ruby_sdk/models/entity_type.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/f24.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/f24_status.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/function_status.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_archive_document_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_cashbook_entry_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_client_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_company_info_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_e_invoice_rejection_reason_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_email_data_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_existing_issued_document_totals_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_existing_issued_document_totals_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_existing_received_document_totals_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_existing_received_document_totals_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_f24_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_issued_document_pre_create_info_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_issued_document_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_new_issued_document_totals_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_new_issued_document_totals_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_new_received_document_totals_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_new_received_document_totals_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_payment_account_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_payment_method_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_product_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_receipt_pre_create_info_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_receipt_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_receipts_monthly_totals_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_received_document_pre_create_info_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_received_document_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_supplier_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_user_info_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_user_info_response_email_confirmation_state.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_user_info_response_info.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/get_vat_type_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/issued_document.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/issued_document_ei_data.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/issued_document_extra_data.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/issued_document_items_list_item.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/issued_document_options.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/issued_document_payments_list_item.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/issued_document_pre_create_info.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/issued_document_pre_create_info_default_values.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/issued_document_pre_create_info_extra_data_default_values.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/issued_document_pre_create_info_items_default_values.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/issued_document_status.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/issued_document_totals.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/issued_document_type.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/language.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_archive_categories_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_archive_documents_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_archive_documents_response_page.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_cashbook_entries_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_cities_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_clients_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_clients_response_page.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_cost_centers_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_countries_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_currencies_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_delivery_notes_default_causals_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_detailed_countries_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_f24_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_f24_response_aggregated_data.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_f24_response_aggregation.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_f24_response_page.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_issued_documents_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_issued_documents_response_page.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_languages_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_payment_accounts_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_payment_methods_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_product_categories_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_products_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_products_response_page.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_receipts_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_receipts_response_page.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_received_document_categories_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_received_documents_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_received_documents_response_page.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_revenue_centers_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_suppliers_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_suppliers_response_page.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_templates_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_units_of_measure_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_user_companies_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_user_companies_response_data.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/list_vat_types_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_archive_document_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_archive_document_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_cashbook_entry_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_cashbook_entry_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_client_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_client_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_f24_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_f24_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_issued_document_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_issued_document_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_payment_account_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_payment_account_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_payment_method_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_payment_method_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_product_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_product_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_receipt_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_receipt_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_received_document_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_received_document_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_supplier_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_supplier_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_vat_type_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/modify_vat_type_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/monthly_total.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/original_document_type.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/pagination.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/payment_account.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/payment_account_type.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/payment_method.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/payment_method_details.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/payment_method_type.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/permission_level.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/permissions.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/permissions_fic_issued_documents_detailed.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/product.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/receipt.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/receipt_items_list_item.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/receipt_pre_create_info.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/receipt_type.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/received_document.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/received_document_entity.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/received_document_info.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/received_document_info_default_values.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/received_document_info_items_default_values.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/received_document_items_list_item.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/received_document_payments_list_item.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/received_document_payments_list_item_payment_terms.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/received_document_totals.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/received_document_type.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/schedule_email_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/send_e_invoice_request.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/send_e_invoice_request_data.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/send_e_invoice_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/send_e_invoice_response_data.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/sender_email.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/show_totals_mode.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/supplier.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/supplier_type.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/upload_archive_attachment_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/upload_f24_attachment_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/upload_issued_document_attachment_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/upload_received_document_attachment_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/user.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/user_company_role.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/vat_item.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/vat_kind.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/vat_type.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_error_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_error_response_error.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_error_response_extra.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_response.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_response_data.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/version.rb +2 -2
- data/lib/fattureincloud_ruby_sdk.rb +9 -1
- data/sdk-version.yaml +1 -1
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/filter/condition_spec.rb +65 -0
- data/spec/filter/conjunction_spec.rb +43 -0
- data/spec/filter/disjunction_spec.rb +43 -0
- data/spec/filter/filter_spec.rb +171 -0
- data/spec/filter/operator_spec.rb +26 -0
- data/spec/spec_helper.rb +1 -1
- metadata +211 -195
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
data/lib/fattureincloud_ruby_sdk/models/received_document_payments_list_item_payment_terms.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -11,5 +11,5 @@ OpenAPI Generator version: 5.4.0
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
13
13
|
module FattureInCloud_Ruby_Sdk
|
|
14
|
-
VERSION = '2.0.
|
|
14
|
+
VERSION = '2.0.7'
|
|
15
15
|
end
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
|
@@ -244,6 +244,14 @@ require 'fattureincloud_ruby_sdk/api/suppliers_api'
|
|
|
244
244
|
require 'fattureincloud_ruby_sdk/api/taxes_api'
|
|
245
245
|
require 'fattureincloud_ruby_sdk/api/user_api'
|
|
246
246
|
|
|
247
|
+
# Filter
|
|
248
|
+
require 'fattureincloud_ruby_sdk/filter/operator'
|
|
249
|
+
require 'fattureincloud_ruby_sdk/filter/condition'
|
|
250
|
+
require 'fattureincloud_ruby_sdk/filter/conjunction'
|
|
251
|
+
require 'fattureincloud_ruby_sdk/filter/disjunction'
|
|
252
|
+
require 'fattureincloud_ruby_sdk/filter/filter'
|
|
253
|
+
require 'fattureincloud_ruby_sdk/filter/expression'
|
|
254
|
+
|
|
247
255
|
module FattureInCloud_Ruby_Sdk
|
|
248
256
|
class << self
|
|
249
257
|
# Customize default settings for the SDK using block.
|
data/sdk-version.yaml
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
info:
|
|
2
|
-
version: 2.0.
|
|
2
|
+
version: 2.0.7
|
data/spec/api_client_spec.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|
data/spec/configuration_spec.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.0.
|
|
6
|
+
The version of the OpenAPI document: 2.0.15
|
|
7
7
|
Contact: info@fattureincloud.it
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.4.0
|