From 0f41eb04da45dc3228fc41b0b3bf18031bdee000 Mon Sep 17 00:00:00 2001 From: Mauro Valota Date: Fri, 1 Mar 2024 12:08:25 +0100 Subject: [PATCH 1/4] feat: added device code manager --- lib/fattureincloud_ruby_sdk/oauth2/oauth2.rb | 150 +++++++++++++++---- spec/oauth2/oauth2_spec.rb | 54 ++++++- 2 files changed, 177 insertions(+), 27 deletions(-) diff --git a/lib/fattureincloud_ruby_sdk/oauth2/oauth2.rb b/lib/fattureincloud_ruby_sdk/oauth2/oauth2.rb index b5c69500..0a4a42a0 100644 --- a/lib/fattureincloud_ruby_sdk/oauth2/oauth2.rb +++ b/lib/fattureincloud_ruby_sdk/oauth2/oauth2.rb @@ -2,8 +2,40 @@ require 'typhoeus' module FattureInCloud_Ruby_Sdk - # The OAuth2AuthorizationCodeManager class is used to manage the OAuth2 authorization code flow. - class OAuth2AuthorizationCodeManager + # The OAuth2Manager class is used to manage the OAuth2 flow. + class OAuth2Manager + attr_accessor :client_id, :base_uri + + # Initializes a new instance of the OAuth2Manager class. + # @param [String] client_id The client id. + # @param [String] base_uri The base uri. + def initialize(client_id, base_uri = 'https://api-v2.fattureincloud.it') + @client_id = client_id + @base_uri = base_uri + end + + # Get the access token. + # @param [String] url The url. + # @param [Object] data The request data. + # @return [Object] The response body. + def execute_post(url, body) + res = Typhoeus.post(token_uri, body: data) + if res.response_code != 200 + raise "Error fetching token: #{res.response_body}" + end + JSON.parse(res.body) + end + + # Build the scopes string. + # @param [Array] scopes The scopes. + # @return [String] The scopes string. + def self.get_scope_string(scopes) + scopes.map { |scope| scope.to_s }.join(' ') + end + end + + # The OAuth2AuthorizationCodeManager class is used to manage the OAuth2 authorization code flow. + class OAuth2AuthorizationCodeManager < OAuth2Manager attr_accessor :client_id, :client_secret, :redirect_uri, :base_uri # Initializes a new instance of the OAuth2AuthorizationCodeManager class. @@ -12,10 +44,9 @@ class OAuth2AuthorizationCodeManager # @param [String] redirect_uri The redirect uri. # @param [String] base_uri The base uri. def initialize(client_id, client_secret, redirect_uri, base_uri = 'https://api-v2.fattureincloud.it') - @client_id = client_id + super client_id, base_uri @client_secret = client_secret @redirect_uri = redirect_uri - @base_uri = base_uri end # Get the authorization url. @@ -24,7 +55,7 @@ def initialize(client_id, client_secret, redirect_uri, base_uri = 'https://api-v # @return [String] The authorization url. def get_authorization_url(scopes, state) authorization_uri = "#{@base_uri}/oauth/authorize" - scope_string = OAuth2AuthorizationCodeManager.get_scope_string(scopes) + scope_string = OAuth2Manager.get_scope_string(scopes) params = { 'response_type': 'code', @@ -40,7 +71,7 @@ def get_authorization_url(scopes, state) # Get the access token. # @param [String] code The code. - # @return [OAuth2AuthorizationCodeTokenResponse] The access token. + # @return [OAuth2TokenResponse] The access token. def fetch_token(code) token_uri = "#{@base_uri}/oauth/token" data = { @@ -51,18 +82,14 @@ def fetch_token(code) 'code': code, } - res = Typhoeus.post(token_uri, body: data) - if res.response_code != 200 - raise "Error fetching token: #{res.response_body}" - end - json = JSON.parse(res.body) + json = execute_post(token_uri, data) - OAuth2AuthorizationCodeTokenResponse.new(json["token_type"], json['access_token'], json['refresh_token'], json['expires_in']) + OAuth2TokenResponse.new(json["token_type"], json['access_token'], json['refresh_token'], json['expires_in']) end # Get the refresh token. # @param [String] refresh_token The refresh token. - # @return [OAuth2AuthorizationCodeTokenResponse] The access token. + # @return [OAuth2TokenResponse] The access token. def refresh_token(refresh_token) token_uri = "#{@base_uri}/oauth/token" data = { @@ -72,13 +99,9 @@ def refresh_token(refresh_token) 'refresh_token': refresh_token, } - res = Typhoeus.post(token_uri, body: data) - if res.response_code != 200 - raise "Error fetching token: #{res.response_body}" - end - json = JSON.parse(res.body) + json = execute_post(token_uri, data) - OAuth2AuthorizationCodeTokenResponse.new(json["token_type"], json['access_token'], json['refresh_token'], json['expires_in']) + OAuth2TokenResponse.new(json["token_type"], json['access_token'], json['refresh_token'], json['expires_in']) end @@ -89,12 +112,66 @@ def get_params_from_url(url) url_obj = URI::decode_www_form(URI.parse(url).query).to_h OAuth2AuthorizationCodeParams.new(url_obj['code'], url_obj['state']) end + end + + # The OAuth2DeviceCodeManager class is used to manage the OAuth2 device code flow. + class OAuth2DeviceCodeManager < OAuth2Manager + attr_accessor :client_id, :base_uri + + # Initializes a new instance of the OAuth2DeviceCodeManager class. + # @param [String] client_id The client id. + # @param [String] base_uri The base uri. + def initialize(client_id, base_uri = 'https://api-v2.fattureincloud.it') + super client_id, base_uri + end - # Build rh escopes string. + # Get the device code. # @param [Array] scopes The scopes. - # @return [String] The scopes string. - def self.get_scope_string(scopes) - scopes.map { |scope| scope.to_s }.join(' ') + # @return [OAuth2DeviceCodeResponse] The device code. + def get_device_code(scopes) + device_uri = "#{@base_uri}/oauth/device" + scope_string = OAuth2Manager.get_scope_string(scopes) + + data = { + 'client_id': @client_id, + 'scope': scope_string + } + + json = execute_post(device_uri, data) + + OAuth2DeviceCodeResponse.new(json["device_code"], json['user_code'], json['scope'], json['verification_uri'], json['interval'], json['expires_in']) + end + + # Get the access token. + # @param [String] code The device code. + # @return [OAuth2TokenResponse] The access token. + def fetch_token(code) + token_uri = "#{@base_uri}/oauth/token" + data = { + 'grant_type': 'urn:ietf:params:oauth:grant-type:device_code', + 'client_id': @client_id, + 'device_code': code, + } + + json = execute_post(token_uri, data) + + OAuth2TokenResponse.new(json["token_type"], json['access_token'], json['refresh_token'], json['expires_in']) + end + + # Get the refresh token. + # @param [String] refresh_token The refresh token. + # @return [OAuth2TokenResponse] The access token. + def refresh_token(refresh_token) + token_uri = "#{@base_uri}/oauth/token" + data = { + 'grant_type': 'refresh_token', + 'client_id': @client_id, + 'refresh_token': refresh_token, + } + + json = execute_post(token_uri, data) + + OAuth2TokenResponse.new(json["token_type"], json['access_token'], json['refresh_token'], json['expires_in']) end end @@ -111,11 +188,11 @@ def initialize(authorization_code, state) end end - # The OAuth2AuthorizationCodeTokenResponse class is used to manage the OAuth2 authorization code token response. - class OAuth2AuthorizationCodeTokenResponse + # The OAuth2TokenResponse class is used to manage the OAuth2 token response. + class OAuth2TokenResponse attr_accessor :token_type, :access_token, :refresh_token, :expires_in - # Initializes a new instance of the OAuth2AuthorizationCodeTokenResponse class. + # Initializes a new instance of the OAuth2TokenResponse class. # @param [String] token_type The token type. # @param [String] access_token The access token. # @param [String] refresh_token The refresh token. @@ -127,4 +204,25 @@ def initialize(token_type, access_token, refresh_token, expires_in) @expires_in = expires_in end end + + # The OAuth2DeviceCodeResponse class is used to manage the OAuth2 device code response. + class OAuth2DerviceCodeResponse + attr_accessor :device_code, :user_code, :scope, :verification_uri, :interval, :expires_in + + # Initializes a new instance of the OAuth2TokenResponse class. + # @param [String] device_code The token type. + # @param [String] user_code The access token. + # @param [Object] user_code The access token. + # @param [String] verification_uri The verification uri. + # @param [Number] interval The interval between two requests. + # @param [Number] expires_in The expire time. + def initialize(device_code, user_code, scope, verification_uri, interval, expires_in) + @device_code = device_code + @user_code = user_code + @scope = scope + @verification_uri = verification_uri + @interval = interval + @expires_in = expires_in + end + end end diff --git a/spec/oauth2/oauth2_spec.rb b/spec/oauth2/oauth2_spec.rb index 98f57572..a5e578c1 100644 --- a/spec/oauth2/oauth2_spec.rb +++ b/spec/oauth2/oauth2_spec.rb @@ -41,7 +41,7 @@ describe 'test an instance of OAuth2AuthorizationCodeParams' do it 'should work' do - params = FattureInCloud_Ruby_Sdk::OAuth2AuthorizationCodeTokenResponse.new('bearer', 'EXAMPLE_TOKEN', 'EXAMPLE_REFRESH_TOKEN', 86400) + params = FattureInCloud_Ruby_Sdk::OAuth2TokenResponse.new('bearer', 'EXAMPLE_TOKEN', 'EXAMPLE_REFRESH_TOKEN', 86400) expect(params.token_type).to eq('bearer') expect(params.access_token).to eq('EXAMPLE_TOKEN') expect(params.refresh_token).to eq('EXAMPLE_REFRESH_TOKEN') @@ -79,3 +79,55 @@ end end + +describe FattureInCloud_Ruby_Sdk::OAuth2DeviceCodeManager do + let(:oauth) { FattureInCloud_Ruby_Sdk::OAuth2DeviceCodeManager.new('CLIENT_ID') } + + + describe 'test an instance of OAuth2DeviceCodeManager' do + it 'should create an instance of OAuth2DeviceCodeManager' do + expect(oauth).to be_instance_of(FattureInCloud_Ruby_Sdk::OAuth2DeviceCodeManager) + expect(oauth.client_id).to eq('CLIENT_ID') + + oauth.client_id = 'CLIENT_ID_2' + expect(oauth.client_id).to eq('CLIENT_ID_2') + end + end + + describe 'test an instance of OAuth2DeviceCodeResponse' do + it 'should work' do + scope = { "situation" => "r", "settings" => "a" } + params = FattureInCloud_Ruby_Sdk::OAuth2DeviceCodeResponse.new('PAPAYA', 'LION', scope, 'https://fattureincloud.it/connetti', 5, 300) + expect(params.device_code).to eq('PAPAYA') + expect(params.user_code).to eq('LION') + expect(params.scope).to eq(scope) + expect(params.verification_uri).to eq('https://fattureincloud.it/connetti') + expect(params.interval).to eq(5) + expect(params.expires_in).to eq(300) + + scope2 = { "situation" => "a" } + params.device_code = 'TIRAMISU' + expect(params.device_code).to eq('TIRAMISU') + params.user_code = 'FELIX-BEACH' + expect(params.user_code).to eq('FELIX-BEACH') + params.scope = scope2 + expect(params.scope).to eq(scope2) + params.verification_uri = 'https://colombiatourism.co' + expect(params.verification_uri).to eq('https://colombiatourism.co') + params.interval = 69 + expect(params.interval).to eq(69) + params.expires_in = 3600 + expect(params.expires_in).to eq(3600) + end + end + + describe 'test method "get_scope_string"' do + it 'should work' do + scopes = [FattureInCloud_Ruby_Sdk::Scope::ISSUED_DOCUMENTS_INVOICES_READ, FattureInCloud_Ruby_Sdk::Scope::SETTINGS_ALL] + scopes_string = FattureInCloud_Ruby_Sdk::OAuth2DeviceCodeManager::get_scope_string(scopes) + + expect(scopes_string).to eq('issued_documents.invoices:r settings:a') + end + end + +end From 137b34fd178ab41525ad533a743e326d817e7f04 Mon Sep 17 00:00:00 2001 From: Mauro Valota Date: Fri, 1 Mar 2024 12:12:53 +0100 Subject: [PATCH 2/4] fic: fixed class name --- lib/fattureincloud_ruby_sdk/oauth2/oauth2.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fattureincloud_ruby_sdk/oauth2/oauth2.rb b/lib/fattureincloud_ruby_sdk/oauth2/oauth2.rb index 0a4a42a0..3ccc6856 100644 --- a/lib/fattureincloud_ruby_sdk/oauth2/oauth2.rb +++ b/lib/fattureincloud_ruby_sdk/oauth2/oauth2.rb @@ -206,7 +206,7 @@ def initialize(token_type, access_token, refresh_token, expires_in) end # The OAuth2DeviceCodeResponse class is used to manage the OAuth2 device code response. - class OAuth2DerviceCodeResponse + class OAuth2DeviceCodeResponse attr_accessor :device_code, :user_code, :scope, :verification_uri, :interval, :expires_in # Initializes a new instance of the OAuth2TokenResponse class. From 24f852d09f098c371bdfcb73bf4c4a471fc12eb3 Mon Sep 17 00:00:00 2001 From: Gabriele Barcella Date: Fri, 14 Jun 2024 09:04:07 +0200 Subject: [PATCH 3/4] fix: added data to get_device_code method --- lib/fattureincloud_ruby_sdk/oauth2/oauth2.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/fattureincloud_ruby_sdk/oauth2/oauth2.rb b/lib/fattureincloud_ruby_sdk/oauth2/oauth2.rb index 3ccc6856..3bf817f5 100644 --- a/lib/fattureincloud_ruby_sdk/oauth2/oauth2.rb +++ b/lib/fattureincloud_ruby_sdk/oauth2/oauth2.rb @@ -19,7 +19,7 @@ def initialize(client_id, base_uri = 'https://api-v2.fattureincloud.it') # @param [Object] data The request data. # @return [Object] The response body. def execute_post(url, body) - res = Typhoeus.post(token_uri, body: data) + res = Typhoeus.post(url, body: body) if res.response_code != 200 raise "Error fetching token: #{res.response_body}" end @@ -56,7 +56,7 @@ def initialize(client_id, client_secret, redirect_uri, base_uri = 'https://api-v def get_authorization_url(scopes, state) authorization_uri = "#{@base_uri}/oauth/authorize" scope_string = OAuth2Manager.get_scope_string(scopes) - + params = { 'response_type': 'code', 'client_id': @client_id, @@ -137,7 +137,7 @@ def get_device_code(scopes) 'scope': scope_string } - json = execute_post(device_uri, data) + json = execute_post(device_uri, data)["data"] OAuth2DeviceCodeResponse.new(json["device_code"], json['user_code'], json['scope'], json['verification_uri'], json['interval'], json['expires_in']) end @@ -178,7 +178,7 @@ def refresh_token(refresh_token) # The Oauth2AuthorizationCodeParams class is used to manage the OAuth2 redirect url query parameters. class OAuth2AuthorizationCodeParams attr_accessor :authorization_code, :state - + # Initializes a new instance of the OAuth2AuthorizationCodeParams class. # @param [String] authorization_code The authorization code. # @param [String] state The state. From be1514fddd06a359cc1c0e202045bd20d5ee21bb Mon Sep 17 00:00:00 2001 From: fattureincloud-bot Date: Mon, 17 Jun 2024 06:38:57 +0000 Subject: [PATCH 4/4] chore: bumping version to 2.1.0 --- .travis.yml | 2 +- README.md | 4 ++-- fattureincloud_ruby_sdk.gemspec | 2 +- lib/fattureincloud_ruby_sdk.rb | 2 +- lib/fattureincloud_ruby_sdk/api/archive_api.rb | 2 +- lib/fattureincloud_ruby_sdk/api/cashbook_api.rb | 2 +- lib/fattureincloud_ruby_sdk/api/clients_api.rb | 2 +- lib/fattureincloud_ruby_sdk/api/companies_api.rb | 2 +- lib/fattureincloud_ruby_sdk/api/emails_api.rb | 2 +- lib/fattureincloud_ruby_sdk/api/info_api.rb | 2 +- lib/fattureincloud_ruby_sdk/api/issued_documents_api.rb | 2 +- lib/fattureincloud_ruby_sdk/api/issued_e_invoices_api.rb | 2 +- lib/fattureincloud_ruby_sdk/api/products_api.rb | 2 +- lib/fattureincloud_ruby_sdk/api/receipts_api.rb | 2 +- lib/fattureincloud_ruby_sdk/api/received_documents_api.rb | 2 +- lib/fattureincloud_ruby_sdk/api/settings_api.rb | 2 +- lib/fattureincloud_ruby_sdk/api/suppliers_api.rb | 2 +- lib/fattureincloud_ruby_sdk/api/taxes_api.rb | 2 +- lib/fattureincloud_ruby_sdk/api/user_api.rb | 2 +- lib/fattureincloud_ruby_sdk/api/webhooks_api.rb | 2 +- lib/fattureincloud_ruby_sdk/api_client.rb | 4 ++-- lib/fattureincloud_ruby_sdk/api_error.rb | 2 +- lib/fattureincloud_ruby_sdk/configuration.rb | 2 +- lib/fattureincloud_ruby_sdk/models/archive_document.rb | 2 +- lib/fattureincloud_ruby_sdk/models/attachment_data.rb | 2 +- lib/fattureincloud_ruby_sdk/models/cashbook_entry.rb | 2 +- lib/fattureincloud_ruby_sdk/models/cashbook_entry_document.rb | 2 +- lib/fattureincloud_ruby_sdk/models/cashbook_entry_kind.rb | 2 +- lib/fattureincloud_ruby_sdk/models/cashbook_entry_type.rb | 2 +- lib/fattureincloud_ruby_sdk/models/city.rb | 2 +- lib/fattureincloud_ruby_sdk/models/client.rb | 2 +- lib/fattureincloud_ruby_sdk/models/client_type.rb | 2 +- lib/fattureincloud_ruby_sdk/models/company.rb | 2 +- lib/fattureincloud_ruby_sdk/models/company_info.rb | 2 +- .../models/company_info_access_info.rb | 2 +- lib/fattureincloud_ruby_sdk/models/company_info_plan_info.rb | 2 +- .../models/company_info_plan_info_functions.rb | 2 +- .../models/company_info_plan_info_functions_status.rb | 2 +- .../models/company_info_plan_info_limits.rb | 2 +- lib/fattureincloud_ruby_sdk/models/company_plan_usage.rb | 2 +- lib/fattureincloud_ruby_sdk/models/company_type.rb | 2 +- lib/fattureincloud_ruby_sdk/models/controlled_company.rb | 2 +- .../models/create_archive_document_request.rb | 2 +- .../models/create_archive_document_response.rb | 2 +- .../models/create_cashbook_entry_request.rb | 2 +- .../models/create_cashbook_entry_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/create_client_request.rb | 2 +- lib/fattureincloud_ruby_sdk/models/create_client_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/create_f24_request.rb | 2 +- lib/fattureincloud_ruby_sdk/models/create_f24_response.rb | 2 +- .../models/create_issued_document_request.rb | 2 +- .../models/create_issued_document_response.rb | 2 +- .../models/create_payment_account_request.rb | 2 +- .../models/create_payment_account_response.rb | 2 +- .../models/create_payment_method_request.rb | 2 +- .../models/create_payment_method_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/create_product_request.rb | 2 +- lib/fattureincloud_ruby_sdk/models/create_product_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/create_receipt_request.rb | 2 +- lib/fattureincloud_ruby_sdk/models/create_receipt_response.rb | 2 +- .../models/create_received_document_request.rb | 2 +- .../models/create_received_document_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/create_supplier_request.rb | 2 +- .../models/create_supplier_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/create_vat_type_request.rb | 2 +- .../models/create_vat_type_response.rb | 2 +- .../models/create_webhooks_subscription_request.rb | 2 +- .../models/create_webhooks_subscription_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/currency.rb | 2 +- lib/fattureincloud_ruby_sdk/models/detailed_country.rb | 2 +- lib/fattureincloud_ruby_sdk/models/document_template.rb | 2 +- .../models/e_invoice_rejection_reason.rb | 2 +- lib/fattureincloud_ruby_sdk/models/email.rb | 2 +- lib/fattureincloud_ruby_sdk/models/email_attachment.rb | 2 +- lib/fattureincloud_ruby_sdk/models/email_data.rb | 2 +- .../models/email_data_default_sender_email.rb | 2 +- lib/fattureincloud_ruby_sdk/models/email_recipient_status.rb | 2 +- lib/fattureincloud_ruby_sdk/models/email_schedule.rb | 2 +- lib/fattureincloud_ruby_sdk/models/email_schedule_include.rb | 2 +- lib/fattureincloud_ruby_sdk/models/email_status.rb | 2 +- lib/fattureincloud_ruby_sdk/models/entity.rb | 2 +- lib/fattureincloud_ruby_sdk/models/entity_type.rb | 2 +- lib/fattureincloud_ruby_sdk/models/event_type.rb | 2 +- lib/fattureincloud_ruby_sdk/models/f24.rb | 2 +- lib/fattureincloud_ruby_sdk/models/f24_status.rb | 2 +- .../models/fatture_in_cloud_plan_type.rb | 2 +- lib/fattureincloud_ruby_sdk/models/function_status.rb | 2 +- .../models/get_archive_document_response.rb | 2 +- .../models/get_cashbook_entry_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/get_client_response.rb | 2 +- .../models/get_company_info_response.rb | 2 +- .../models/get_company_plan_usage_response.rb | 2 +- .../models/get_e_invoice_rejection_reason_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/get_email_data_response.rb | 2 +- .../models/get_existing_issued_document_totals_request.rb | 2 +- .../models/get_existing_issued_document_totals_response.rb | 2 +- .../models/get_existing_received_document_totals_request.rb | 2 +- .../models/get_existing_received_document_totals_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/get_f24_response.rb | 2 +- .../models/get_issued_document_pre_create_info_response.rb | 2 +- .../models/get_issued_document_response.rb | 2 +- .../models/get_new_issued_document_totals_request.rb | 2 +- .../models/get_new_issued_document_totals_response.rb | 2 +- .../models/get_new_received_document_totals_request.rb | 2 +- .../models/get_new_received_document_totals_response.rb | 2 +- .../models/get_payment_account_response.rb | 2 +- .../models/get_payment_method_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/get_product_response.rb | 2 +- .../models/get_receipt_pre_create_info_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/get_receipt_response.rb | 2 +- .../models/get_receipts_monthly_totals_response.rb | 2 +- .../models/get_received_document_pre_create_info_response.rb | 2 +- .../models/get_received_document_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/get_supplier_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/get_user_info_response.rb | 2 +- .../models/get_user_info_response_email_confirmation_state.rb | 2 +- .../models/get_user_info_response_info.rb | 2 +- lib/fattureincloud_ruby_sdk/models/get_vat_type_response.rb | 2 +- .../models/get_webhooks_subscription_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/issued_document.rb | 2 +- lib/fattureincloud_ruby_sdk/models/issued_document_ei_data.rb | 2 +- .../models/issued_document_extra_data.rb | 2 +- .../models/issued_document_items_list_item.rb | 2 +- lib/fattureincloud_ruby_sdk/models/issued_document_options.rb | 2 +- .../models/issued_document_payments_list_item.rb | 2 +- .../issued_document_payments_list_item_payment_terms.rb | 2 +- .../models/issued_document_pre_create_info.rb | 2 +- .../models/issued_document_pre_create_info_default_values.rb | 2 +- ...sued_document_pre_create_info_extra_data_default_values.rb | 2 +- .../issued_document_pre_create_info_items_default_values.rb | 2 +- lib/fattureincloud_ruby_sdk/models/issued_document_status.rb | 2 +- lib/fattureincloud_ruby_sdk/models/issued_document_totals.rb | 2 +- lib/fattureincloud_ruby_sdk/models/issued_document_type.rb | 2 +- .../models/join_issued_documents_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/language.rb | 2 +- .../models/list_archive_categories_response.rb | 2 +- .../models/list_archive_documents_response.rb | 2 +- .../models/list_archive_documents_response_page.rb | 2 +- .../models/list_cashbook_entries_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/list_cities_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/list_clients_response.rb | 2 +- .../models/list_clients_response_page.rb | 2 +- .../models/list_cost_centers_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/list_countries_response.rb | 2 +- .../models/list_currencies_response.rb | 2 +- .../models/list_delivery_notes_default_causals_response.rb | 2 +- .../models/list_detailed_countries_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/list_emails_response.rb | 2 +- .../models/list_emails_response_page.rb | 2 +- lib/fattureincloud_ruby_sdk/models/list_f24_response.rb | 2 +- .../models/list_f24_response_aggregated_data.rb | 2 +- .../models/list_f24_response_aggregation.rb | 2 +- lib/fattureincloud_ruby_sdk/models/list_f24_response_page.rb | 2 +- .../models/list_issued_documents_response.rb | 2 +- .../models/list_issued_documents_response_page.rb | 2 +- lib/fattureincloud_ruby_sdk/models/list_languages_response.rb | 2 +- .../models/list_payment_accounts_response.rb | 2 +- .../models/list_payment_methods_response.rb | 2 +- .../models/list_product_categories_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/list_products_response.rb | 2 +- .../models/list_products_response_page.rb | 2 +- lib/fattureincloud_ruby_sdk/models/list_receipts_response.rb | 2 +- .../models/list_receipts_response_page.rb | 2 +- .../models/list_received_document_categories_response.rb | 2 +- .../models/list_received_documents_response.rb | 2 +- .../models/list_received_documents_response_page.rb | 2 +- .../models/list_revenue_centers_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/list_suppliers_response.rb | 2 +- .../models/list_suppliers_response_page.rb | 2 +- lib/fattureincloud_ruby_sdk/models/list_templates_response.rb | 2 +- .../models/list_units_of_measure_response.rb | 2 +- .../models/list_user_companies_response.rb | 2 +- .../models/list_user_companies_response_data.rb | 2 +- lib/fattureincloud_ruby_sdk/models/list_vat_types_response.rb | 2 +- .../models/list_webhooks_subscriptions_response.rb | 2 +- .../models/modify_archive_document_request.rb | 2 +- .../models/modify_archive_document_response.rb | 2 +- .../models/modify_cashbook_entry_request.rb | 2 +- .../models/modify_cashbook_entry_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/modify_client_request.rb | 2 +- lib/fattureincloud_ruby_sdk/models/modify_client_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/modify_f24_request.rb | 2 +- lib/fattureincloud_ruby_sdk/models/modify_f24_response.rb | 2 +- .../models/modify_issued_document_request.rb | 2 +- .../models/modify_issued_document_response.rb | 2 +- .../models/modify_payment_account_request.rb | 2 +- .../models/modify_payment_account_response.rb | 2 +- .../models/modify_payment_method_request.rb | 2 +- .../models/modify_payment_method_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/modify_product_request.rb | 2 +- lib/fattureincloud_ruby_sdk/models/modify_product_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/modify_receipt_request.rb | 2 +- lib/fattureincloud_ruby_sdk/models/modify_receipt_response.rb | 2 +- .../models/modify_received_document_request.rb | 2 +- .../models/modify_received_document_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/modify_supplier_request.rb | 2 +- .../models/modify_supplier_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/modify_vat_type_request.rb | 2 +- .../models/modify_vat_type_response.rb | 2 +- .../models/modify_webhooks_subscription_request.rb | 2 +- .../models/modify_webhooks_subscription_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/monthly_total.rb | 2 +- lib/fattureincloud_ruby_sdk/models/original_document_type.rb | 2 +- lib/fattureincloud_ruby_sdk/models/pagination.rb | 2 +- lib/fattureincloud_ruby_sdk/models/payment_account.rb | 2 +- lib/fattureincloud_ruby_sdk/models/payment_account_type.rb | 2 +- lib/fattureincloud_ruby_sdk/models/payment_method.rb | 2 +- lib/fattureincloud_ruby_sdk/models/payment_method_details.rb | 2 +- lib/fattureincloud_ruby_sdk/models/payment_method_type.rb | 2 +- lib/fattureincloud_ruby_sdk/models/payment_terms_type.rb | 2 +- lib/fattureincloud_ruby_sdk/models/permission_level.rb | 2 +- lib/fattureincloud_ruby_sdk/models/permissions.rb | 2 +- .../models/permissions_fic_issued_documents_detailed.rb | 2 +- lib/fattureincloud_ruby_sdk/models/product.rb | 2 +- lib/fattureincloud_ruby_sdk/models/receipt.rb | 2 +- lib/fattureincloud_ruby_sdk/models/receipt_items_list_item.rb | 2 +- lib/fattureincloud_ruby_sdk/models/receipt_pre_create_info.rb | 2 +- lib/fattureincloud_ruby_sdk/models/receipt_type.rb | 2 +- lib/fattureincloud_ruby_sdk/models/received_document.rb | 2 +- lib/fattureincloud_ruby_sdk/models/received_document_info.rb | 2 +- .../models/received_document_info_default_values.rb | 2 +- .../models/received_document_info_items_default_values.rb | 2 +- .../models/received_document_items_list_item.rb | 2 +- .../models/received_document_payments_list_item.rb | 2 +- .../received_document_payments_list_item_payment_terms.rb | 2 +- .../models/received_document_totals.rb | 2 +- lib/fattureincloud_ruby_sdk/models/received_document_type.rb | 2 +- lib/fattureincloud_ruby_sdk/models/schedule_email_request.rb | 2 +- lib/fattureincloud_ruby_sdk/models/send_e_invoice_request.rb | 2 +- .../models/send_e_invoice_request_data.rb | 2 +- .../models/send_e_invoice_request_options.rb | 2 +- lib/fattureincloud_ruby_sdk/models/send_e_invoice_response.rb | 2 +- .../models/send_e_invoice_response_data.rb | 2 +- lib/fattureincloud_ruby_sdk/models/sender_email.rb | 2 +- lib/fattureincloud_ruby_sdk/models/show_totals_mode.rb | 2 +- lib/fattureincloud_ruby_sdk/models/supplier.rb | 2 +- lib/fattureincloud_ruby_sdk/models/supplier_type.rb | 2 +- .../models/transform_issued_document_response.rb | 2 +- .../models/upload_archive_attachment_response.rb | 2 +- .../models/upload_f24_attachment_response.rb | 2 +- .../models/upload_issued_document_attachment_response.rb | 2 +- .../models/upload_received_document_attachment_response.rb | 2 +- lib/fattureincloud_ruby_sdk/models/user.rb | 2 +- lib/fattureincloud_ruby_sdk/models/user_company_role.rb | 2 +- lib/fattureincloud_ruby_sdk/models/vat_item.rb | 2 +- lib/fattureincloud_ruby_sdk/models/vat_kind.rb | 2 +- lib/fattureincloud_ruby_sdk/models/vat_type.rb | 2 +- .../models/verify_e_invoice_xml_error_response.rb | 2 +- .../models/verify_e_invoice_xml_error_response_error.rb | 2 +- ...fy_e_invoice_xml_error_response_error_validation_result.rb | 2 +- .../models/verify_e_invoice_xml_error_response_extra.rb | 2 +- .../models/verify_e_invoice_xml_response.rb | 2 +- .../models/verify_e_invoice_xml_response_data.rb | 2 +- lib/fattureincloud_ruby_sdk/models/webhooks_subscription.rb | 2 +- .../models/webhooks_subscription_config.rb | 2 +- .../models/webhooks_subscription_mapping.rb | 2 +- lib/fattureincloud_ruby_sdk/version.rb | 4 ++-- sdk-version.yaml | 2 +- spec/spec_helper.rb | 2 +- 259 files changed, 262 insertions(+), 262 deletions(-) diff --git a/.travis.yml b/.travis.yml index 119cb6e9..a5e4001d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,4 +8,4 @@ script: - bundle install --path vendor/bundle - bundle exec rspec - gem build fattureincloud_ruby_sdk.gemspec - - gem install ./fattureincloud_ruby_sdk-2.0.21.gem + - gem install ./fattureincloud_ruby_sdk-2.1.0.gem diff --git a/README.md b/README.md index b4c97c28..4aa4de55 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,8 @@ The Fatture in Cloud API is based on REST, and makes possible to interact with t This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 2.0.33 -- Package version: 2.0.21 +- API version: 2.1.0 +- Package version: 2.1.0 - Build package: org.openapitools.codegen.languages.RubyClientCodegen diff --git a/fattureincloud_ruby_sdk.gemspec b/fattureincloud_ruby_sdk.gemspec index 9c39a284..422908f1 100644 --- a/fattureincloud_ruby_sdk.gemspec +++ b/fattureincloud_ruby_sdk.gemspec @@ -5,7 +5,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk.rb b/lib/fattureincloud_ruby_sdk.rb index 897df501..f95fa13c 100644 --- a/lib/fattureincloud_ruby_sdk.rb +++ b/lib/fattureincloud_ruby_sdk.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/api/archive_api.rb b/lib/fattureincloud_ruby_sdk/api/archive_api.rb index 215141ba..41597363 100644 --- a/lib/fattureincloud_ruby_sdk/api/archive_api.rb +++ b/lib/fattureincloud_ruby_sdk/api/archive_api.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/api/cashbook_api.rb b/lib/fattureincloud_ruby_sdk/api/cashbook_api.rb index 9c626972..a3646e35 100644 --- a/lib/fattureincloud_ruby_sdk/api/cashbook_api.rb +++ b/lib/fattureincloud_ruby_sdk/api/cashbook_api.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/api/clients_api.rb b/lib/fattureincloud_ruby_sdk/api/clients_api.rb index 65895e77..f20c5f30 100644 --- a/lib/fattureincloud_ruby_sdk/api/clients_api.rb +++ b/lib/fattureincloud_ruby_sdk/api/clients_api.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/api/companies_api.rb b/lib/fattureincloud_ruby_sdk/api/companies_api.rb index 3705bcdb..6dc7b28c 100644 --- a/lib/fattureincloud_ruby_sdk/api/companies_api.rb +++ b/lib/fattureincloud_ruby_sdk/api/companies_api.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/api/emails_api.rb b/lib/fattureincloud_ruby_sdk/api/emails_api.rb index 65795ff5..3debea2f 100644 --- a/lib/fattureincloud_ruby_sdk/api/emails_api.rb +++ b/lib/fattureincloud_ruby_sdk/api/emails_api.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/api/info_api.rb b/lib/fattureincloud_ruby_sdk/api/info_api.rb index 5368aa14..99e73dc6 100644 --- a/lib/fattureincloud_ruby_sdk/api/info_api.rb +++ b/lib/fattureincloud_ruby_sdk/api/info_api.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/api/issued_documents_api.rb b/lib/fattureincloud_ruby_sdk/api/issued_documents_api.rb index fe332f69..8ea86941 100644 --- a/lib/fattureincloud_ruby_sdk/api/issued_documents_api.rb +++ b/lib/fattureincloud_ruby_sdk/api/issued_documents_api.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/api/issued_e_invoices_api.rb b/lib/fattureincloud_ruby_sdk/api/issued_e_invoices_api.rb index ad98d868..92b8efc9 100644 --- a/lib/fattureincloud_ruby_sdk/api/issued_e_invoices_api.rb +++ b/lib/fattureincloud_ruby_sdk/api/issued_e_invoices_api.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/api/products_api.rb b/lib/fattureincloud_ruby_sdk/api/products_api.rb index 9a4f4652..bd3eda7d 100644 --- a/lib/fattureincloud_ruby_sdk/api/products_api.rb +++ b/lib/fattureincloud_ruby_sdk/api/products_api.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/api/receipts_api.rb b/lib/fattureincloud_ruby_sdk/api/receipts_api.rb index a9d5b40a..6f95c7e3 100644 --- a/lib/fattureincloud_ruby_sdk/api/receipts_api.rb +++ b/lib/fattureincloud_ruby_sdk/api/receipts_api.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/api/received_documents_api.rb b/lib/fattureincloud_ruby_sdk/api/received_documents_api.rb index a45a356c..f2a6e417 100644 --- a/lib/fattureincloud_ruby_sdk/api/received_documents_api.rb +++ b/lib/fattureincloud_ruby_sdk/api/received_documents_api.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/api/settings_api.rb b/lib/fattureincloud_ruby_sdk/api/settings_api.rb index d6cc1b5a..d4b3815e 100644 --- a/lib/fattureincloud_ruby_sdk/api/settings_api.rb +++ b/lib/fattureincloud_ruby_sdk/api/settings_api.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/api/suppliers_api.rb b/lib/fattureincloud_ruby_sdk/api/suppliers_api.rb index c4f5e23d..2af74044 100644 --- a/lib/fattureincloud_ruby_sdk/api/suppliers_api.rb +++ b/lib/fattureincloud_ruby_sdk/api/suppliers_api.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/api/taxes_api.rb b/lib/fattureincloud_ruby_sdk/api/taxes_api.rb index 1c960075..5f4fc3cb 100644 --- a/lib/fattureincloud_ruby_sdk/api/taxes_api.rb +++ b/lib/fattureincloud_ruby_sdk/api/taxes_api.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/api/user_api.rb b/lib/fattureincloud_ruby_sdk/api/user_api.rb index a32848de..a7181f96 100644 --- a/lib/fattureincloud_ruby_sdk/api/user_api.rb +++ b/lib/fattureincloud_ruby_sdk/api/user_api.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/api/webhooks_api.rb b/lib/fattureincloud_ruby_sdk/api/webhooks_api.rb index 04738229..36a57b99 100644 --- a/lib/fattureincloud_ruby_sdk/api/webhooks_api.rb +++ b/lib/fattureincloud_ruby_sdk/api/webhooks_api.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/api_client.rb b/lib/fattureincloud_ruby_sdk/api_client.rb index 1d100222..0ad2ed95 100644 --- a/lib/fattureincloud_ruby_sdk/api_client.rb +++ b/lib/fattureincloud_ruby_sdk/api_client.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 @@ -32,7 +32,7 @@ class ApiClient # @option config [Configuration] Configuration for initializing the object, default to Configuration.default def initialize(config = Configuration.default) @config = config - @user_agent = "FattureInCloud/2.0.21/Ruby-SDK" + @user_agent = "FattureInCloud/2.1.0/Ruby-SDK" @default_headers = { 'Content-Type' => 'application/json', 'User-Agent' => @user_agent diff --git a/lib/fattureincloud_ruby_sdk/api_error.rb b/lib/fattureincloud_ruby_sdk/api_error.rb index aef793e5..8f4b10ab 100644 --- a/lib/fattureincloud_ruby_sdk/api_error.rb +++ b/lib/fattureincloud_ruby_sdk/api_error.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/configuration.rb b/lib/fattureincloud_ruby_sdk/configuration.rb index ecf448a1..69926f68 100644 --- a/lib/fattureincloud_ruby_sdk/configuration.rb +++ b/lib/fattureincloud_ruby_sdk/configuration.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/archive_document.rb b/lib/fattureincloud_ruby_sdk/models/archive_document.rb index ec4c45e4..c8858436 100644 --- a/lib/fattureincloud_ruby_sdk/models/archive_document.rb +++ b/lib/fattureincloud_ruby_sdk/models/archive_document.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/attachment_data.rb b/lib/fattureincloud_ruby_sdk/models/attachment_data.rb index 016f4206..51bccc90 100644 --- a/lib/fattureincloud_ruby_sdk/models/attachment_data.rb +++ b/lib/fattureincloud_ruby_sdk/models/attachment_data.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/cashbook_entry.rb b/lib/fattureincloud_ruby_sdk/models/cashbook_entry.rb index a7257957..cea74397 100644 --- a/lib/fattureincloud_ruby_sdk/models/cashbook_entry.rb +++ b/lib/fattureincloud_ruby_sdk/models/cashbook_entry.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/cashbook_entry_document.rb b/lib/fattureincloud_ruby_sdk/models/cashbook_entry_document.rb index 4bf90156..8ef3c91f 100644 --- a/lib/fattureincloud_ruby_sdk/models/cashbook_entry_document.rb +++ b/lib/fattureincloud_ruby_sdk/models/cashbook_entry_document.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/cashbook_entry_kind.rb b/lib/fattureincloud_ruby_sdk/models/cashbook_entry_kind.rb index f2543ea6..68597cf2 100644 --- a/lib/fattureincloud_ruby_sdk/models/cashbook_entry_kind.rb +++ b/lib/fattureincloud_ruby_sdk/models/cashbook_entry_kind.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/cashbook_entry_type.rb b/lib/fattureincloud_ruby_sdk/models/cashbook_entry_type.rb index 83de2755..15226065 100644 --- a/lib/fattureincloud_ruby_sdk/models/cashbook_entry_type.rb +++ b/lib/fattureincloud_ruby_sdk/models/cashbook_entry_type.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/city.rb b/lib/fattureincloud_ruby_sdk/models/city.rb index 92f478ef..9dde9060 100644 --- a/lib/fattureincloud_ruby_sdk/models/city.rb +++ b/lib/fattureincloud_ruby_sdk/models/city.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/client.rb b/lib/fattureincloud_ruby_sdk/models/client.rb index f68382cb..806dc2a4 100644 --- a/lib/fattureincloud_ruby_sdk/models/client.rb +++ b/lib/fattureincloud_ruby_sdk/models/client.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/client_type.rb b/lib/fattureincloud_ruby_sdk/models/client_type.rb index 709ca6ba..519e59b7 100644 --- a/lib/fattureincloud_ruby_sdk/models/client_type.rb +++ b/lib/fattureincloud_ruby_sdk/models/client_type.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/company.rb b/lib/fattureincloud_ruby_sdk/models/company.rb index d33cd84c..5b847f1e 100644 --- a/lib/fattureincloud_ruby_sdk/models/company.rb +++ b/lib/fattureincloud_ruby_sdk/models/company.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/company_info.rb b/lib/fattureincloud_ruby_sdk/models/company_info.rb index bf06f315..d6f46900 100644 --- a/lib/fattureincloud_ruby_sdk/models/company_info.rb +++ b/lib/fattureincloud_ruby_sdk/models/company_info.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/company_info_access_info.rb b/lib/fattureincloud_ruby_sdk/models/company_info_access_info.rb index b798649c..2284b5ad 100644 --- a/lib/fattureincloud_ruby_sdk/models/company_info_access_info.rb +++ b/lib/fattureincloud_ruby_sdk/models/company_info_access_info.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/company_info_plan_info.rb b/lib/fattureincloud_ruby_sdk/models/company_info_plan_info.rb index 2fc65e0d..09e08cd7 100644 --- a/lib/fattureincloud_ruby_sdk/models/company_info_plan_info.rb +++ b/lib/fattureincloud_ruby_sdk/models/company_info_plan_info.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/company_info_plan_info_functions.rb b/lib/fattureincloud_ruby_sdk/models/company_info_plan_info_functions.rb index d3d85677..38578899 100644 --- a/lib/fattureincloud_ruby_sdk/models/company_info_plan_info_functions.rb +++ b/lib/fattureincloud_ruby_sdk/models/company_info_plan_info_functions.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/company_info_plan_info_functions_status.rb b/lib/fattureincloud_ruby_sdk/models/company_info_plan_info_functions_status.rb index 798df8c8..99370cd4 100644 --- a/lib/fattureincloud_ruby_sdk/models/company_info_plan_info_functions_status.rb +++ b/lib/fattureincloud_ruby_sdk/models/company_info_plan_info_functions_status.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/company_info_plan_info_limits.rb b/lib/fattureincloud_ruby_sdk/models/company_info_plan_info_limits.rb index 87374d9f..8ef0e157 100644 --- a/lib/fattureincloud_ruby_sdk/models/company_info_plan_info_limits.rb +++ b/lib/fattureincloud_ruby_sdk/models/company_info_plan_info_limits.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/company_plan_usage.rb b/lib/fattureincloud_ruby_sdk/models/company_plan_usage.rb index fbb3dccd..e037275e 100644 --- a/lib/fattureincloud_ruby_sdk/models/company_plan_usage.rb +++ b/lib/fattureincloud_ruby_sdk/models/company_plan_usage.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/company_type.rb b/lib/fattureincloud_ruby_sdk/models/company_type.rb index 23610c6a..9c5c8eb4 100644 --- a/lib/fattureincloud_ruby_sdk/models/company_type.rb +++ b/lib/fattureincloud_ruby_sdk/models/company_type.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/controlled_company.rb b/lib/fattureincloud_ruby_sdk/models/controlled_company.rb index 2ba7fd92..9ec368f6 100644 --- a/lib/fattureincloud_ruby_sdk/models/controlled_company.rb +++ b/lib/fattureincloud_ruby_sdk/models/controlled_company.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_archive_document_request.rb b/lib/fattureincloud_ruby_sdk/models/create_archive_document_request.rb index 8e6a9912..655eff3c 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_archive_document_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_archive_document_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_archive_document_response.rb b/lib/fattureincloud_ruby_sdk/models/create_archive_document_response.rb index 28f218c4..249aab70 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_archive_document_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_archive_document_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_cashbook_entry_request.rb b/lib/fattureincloud_ruby_sdk/models/create_cashbook_entry_request.rb index f14153d1..15a7a4ae 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_cashbook_entry_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_cashbook_entry_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_cashbook_entry_response.rb b/lib/fattureincloud_ruby_sdk/models/create_cashbook_entry_response.rb index dc97de7f..b0e75c41 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_cashbook_entry_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_cashbook_entry_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_client_request.rb b/lib/fattureincloud_ruby_sdk/models/create_client_request.rb index 57b9490a..04b16e2a 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_client_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_client_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_client_response.rb b/lib/fattureincloud_ruby_sdk/models/create_client_response.rb index 2ed84c63..ceeda10c 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_client_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_client_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_f24_request.rb b/lib/fattureincloud_ruby_sdk/models/create_f24_request.rb index 806cd4b9..405412ec 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_f24_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_f24_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_f24_response.rb b/lib/fattureincloud_ruby_sdk/models/create_f24_response.rb index f0ffc2ef..9704d3db 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_f24_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_f24_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_issued_document_request.rb b/lib/fattureincloud_ruby_sdk/models/create_issued_document_request.rb index 3b0bf12f..31fc6a6c 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_issued_document_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_issued_document_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_issued_document_response.rb b/lib/fattureincloud_ruby_sdk/models/create_issued_document_response.rb index 8fc0e704..a762c073 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_issued_document_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_issued_document_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_payment_account_request.rb b/lib/fattureincloud_ruby_sdk/models/create_payment_account_request.rb index bbff4297..b9ce4909 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_payment_account_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_payment_account_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_payment_account_response.rb b/lib/fattureincloud_ruby_sdk/models/create_payment_account_response.rb index 288f8932..4e9394c5 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_payment_account_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_payment_account_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_payment_method_request.rb b/lib/fattureincloud_ruby_sdk/models/create_payment_method_request.rb index 7aa9ad4d..0cf743fb 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_payment_method_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_payment_method_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_payment_method_response.rb b/lib/fattureincloud_ruby_sdk/models/create_payment_method_response.rb index 04891923..0561c8bf 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_payment_method_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_payment_method_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_product_request.rb b/lib/fattureincloud_ruby_sdk/models/create_product_request.rb index 9a0b65d8..cbccb138 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_product_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_product_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_product_response.rb b/lib/fattureincloud_ruby_sdk/models/create_product_response.rb index 1c574a9c..562fc6fc 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_product_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_product_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_receipt_request.rb b/lib/fattureincloud_ruby_sdk/models/create_receipt_request.rb index 6de884ea..372a6116 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_receipt_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_receipt_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_receipt_response.rb b/lib/fattureincloud_ruby_sdk/models/create_receipt_response.rb index b50d95b9..23aff9e2 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_receipt_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_receipt_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_received_document_request.rb b/lib/fattureincloud_ruby_sdk/models/create_received_document_request.rb index 390f84eb..b37250cb 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_received_document_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_received_document_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_received_document_response.rb b/lib/fattureincloud_ruby_sdk/models/create_received_document_response.rb index 73aa8e50..a1255222 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_received_document_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_received_document_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_supplier_request.rb b/lib/fattureincloud_ruby_sdk/models/create_supplier_request.rb index f2291e9d..7a444abf 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_supplier_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_supplier_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_supplier_response.rb b/lib/fattureincloud_ruby_sdk/models/create_supplier_response.rb index 6fb99bc0..357bce25 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_supplier_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_supplier_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_vat_type_request.rb b/lib/fattureincloud_ruby_sdk/models/create_vat_type_request.rb index 5350a0c0..444571e4 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_vat_type_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_vat_type_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_vat_type_response.rb b/lib/fattureincloud_ruby_sdk/models/create_vat_type_response.rb index 8ef55ab6..4e580404 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_vat_type_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_vat_type_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_webhooks_subscription_request.rb b/lib/fattureincloud_ruby_sdk/models/create_webhooks_subscription_request.rb index 5e74ef3c..39f29663 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_webhooks_subscription_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_webhooks_subscription_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/create_webhooks_subscription_response.rb b/lib/fattureincloud_ruby_sdk/models/create_webhooks_subscription_response.rb index 4ac32060..1e0dbd33 100644 --- a/lib/fattureincloud_ruby_sdk/models/create_webhooks_subscription_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/create_webhooks_subscription_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/currency.rb b/lib/fattureincloud_ruby_sdk/models/currency.rb index fb436404..f42d5623 100644 --- a/lib/fattureincloud_ruby_sdk/models/currency.rb +++ b/lib/fattureincloud_ruby_sdk/models/currency.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/detailed_country.rb b/lib/fattureincloud_ruby_sdk/models/detailed_country.rb index 527cc0dd..28211a45 100644 --- a/lib/fattureincloud_ruby_sdk/models/detailed_country.rb +++ b/lib/fattureincloud_ruby_sdk/models/detailed_country.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/document_template.rb b/lib/fattureincloud_ruby_sdk/models/document_template.rb index 2aaeb085..18f459b5 100644 --- a/lib/fattureincloud_ruby_sdk/models/document_template.rb +++ b/lib/fattureincloud_ruby_sdk/models/document_template.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/e_invoice_rejection_reason.rb b/lib/fattureincloud_ruby_sdk/models/e_invoice_rejection_reason.rb index e954e96a..eff16056 100644 --- a/lib/fattureincloud_ruby_sdk/models/e_invoice_rejection_reason.rb +++ b/lib/fattureincloud_ruby_sdk/models/e_invoice_rejection_reason.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/email.rb b/lib/fattureincloud_ruby_sdk/models/email.rb index 7b92478d..e85794ad 100644 --- a/lib/fattureincloud_ruby_sdk/models/email.rb +++ b/lib/fattureincloud_ruby_sdk/models/email.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/email_attachment.rb b/lib/fattureincloud_ruby_sdk/models/email_attachment.rb index 14e9cb52..3cafd9d6 100644 --- a/lib/fattureincloud_ruby_sdk/models/email_attachment.rb +++ b/lib/fattureincloud_ruby_sdk/models/email_attachment.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/email_data.rb b/lib/fattureincloud_ruby_sdk/models/email_data.rb index 49e0742f..e12642f9 100644 --- a/lib/fattureincloud_ruby_sdk/models/email_data.rb +++ b/lib/fattureincloud_ruby_sdk/models/email_data.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/email_data_default_sender_email.rb b/lib/fattureincloud_ruby_sdk/models/email_data_default_sender_email.rb index 9c6a2b45..d1980300 100644 --- a/lib/fattureincloud_ruby_sdk/models/email_data_default_sender_email.rb +++ b/lib/fattureincloud_ruby_sdk/models/email_data_default_sender_email.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/email_recipient_status.rb b/lib/fattureincloud_ruby_sdk/models/email_recipient_status.rb index 43128b07..70fb6317 100644 --- a/lib/fattureincloud_ruby_sdk/models/email_recipient_status.rb +++ b/lib/fattureincloud_ruby_sdk/models/email_recipient_status.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/email_schedule.rb b/lib/fattureincloud_ruby_sdk/models/email_schedule.rb index c27e8f8b..97729306 100644 --- a/lib/fattureincloud_ruby_sdk/models/email_schedule.rb +++ b/lib/fattureincloud_ruby_sdk/models/email_schedule.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/email_schedule_include.rb b/lib/fattureincloud_ruby_sdk/models/email_schedule_include.rb index e6fe1c36..53002685 100644 --- a/lib/fattureincloud_ruby_sdk/models/email_schedule_include.rb +++ b/lib/fattureincloud_ruby_sdk/models/email_schedule_include.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/email_status.rb b/lib/fattureincloud_ruby_sdk/models/email_status.rb index af41480e..73f06323 100644 --- a/lib/fattureincloud_ruby_sdk/models/email_status.rb +++ b/lib/fattureincloud_ruby_sdk/models/email_status.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/entity.rb b/lib/fattureincloud_ruby_sdk/models/entity.rb index 0985d6b6..c8e5448a 100644 --- a/lib/fattureincloud_ruby_sdk/models/entity.rb +++ b/lib/fattureincloud_ruby_sdk/models/entity.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/entity_type.rb b/lib/fattureincloud_ruby_sdk/models/entity_type.rb index 346a87a6..7101131d 100644 --- a/lib/fattureincloud_ruby_sdk/models/entity_type.rb +++ b/lib/fattureincloud_ruby_sdk/models/entity_type.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/event_type.rb b/lib/fattureincloud_ruby_sdk/models/event_type.rb index 51b7bb0e..81a194aa 100644 --- a/lib/fattureincloud_ruby_sdk/models/event_type.rb +++ b/lib/fattureincloud_ruby_sdk/models/event_type.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/f24.rb b/lib/fattureincloud_ruby_sdk/models/f24.rb index fd103f60..f2bc4dae 100644 --- a/lib/fattureincloud_ruby_sdk/models/f24.rb +++ b/lib/fattureincloud_ruby_sdk/models/f24.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/f24_status.rb b/lib/fattureincloud_ruby_sdk/models/f24_status.rb index d240113b..fdb75c5b 100644 --- a/lib/fattureincloud_ruby_sdk/models/f24_status.rb +++ b/lib/fattureincloud_ruby_sdk/models/f24_status.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/fatture_in_cloud_plan_type.rb b/lib/fattureincloud_ruby_sdk/models/fatture_in_cloud_plan_type.rb index 4fd6b6d8..afee7c80 100644 --- a/lib/fattureincloud_ruby_sdk/models/fatture_in_cloud_plan_type.rb +++ b/lib/fattureincloud_ruby_sdk/models/fatture_in_cloud_plan_type.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/function_status.rb b/lib/fattureincloud_ruby_sdk/models/function_status.rb index 26def8f6..9528e6de 100644 --- a/lib/fattureincloud_ruby_sdk/models/function_status.rb +++ b/lib/fattureincloud_ruby_sdk/models/function_status.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_archive_document_response.rb b/lib/fattureincloud_ruby_sdk/models/get_archive_document_response.rb index 81c17994..f2549791 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_archive_document_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_archive_document_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_cashbook_entry_response.rb b/lib/fattureincloud_ruby_sdk/models/get_cashbook_entry_response.rb index 63209db3..fe152c97 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_cashbook_entry_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_cashbook_entry_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_client_response.rb b/lib/fattureincloud_ruby_sdk/models/get_client_response.rb index de87b453..e009a076 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_client_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_client_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_company_info_response.rb b/lib/fattureincloud_ruby_sdk/models/get_company_info_response.rb index 72287288..ab58ee52 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_company_info_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_company_info_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_company_plan_usage_response.rb b/lib/fattureincloud_ruby_sdk/models/get_company_plan_usage_response.rb index 3abe4100..60de9471 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_company_plan_usage_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_company_plan_usage_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_e_invoice_rejection_reason_response.rb b/lib/fattureincloud_ruby_sdk/models/get_e_invoice_rejection_reason_response.rb index fc6802f8..5a5f988d 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_e_invoice_rejection_reason_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_e_invoice_rejection_reason_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_email_data_response.rb b/lib/fattureincloud_ruby_sdk/models/get_email_data_response.rb index c4f94976..bf950d90 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_email_data_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_email_data_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_existing_issued_document_totals_request.rb b/lib/fattureincloud_ruby_sdk/models/get_existing_issued_document_totals_request.rb index 3816d5d9..c49cadfe 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_existing_issued_document_totals_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_existing_issued_document_totals_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_existing_issued_document_totals_response.rb b/lib/fattureincloud_ruby_sdk/models/get_existing_issued_document_totals_response.rb index 5b5dd5db..6abde1c4 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_existing_issued_document_totals_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_existing_issued_document_totals_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_existing_received_document_totals_request.rb b/lib/fattureincloud_ruby_sdk/models/get_existing_received_document_totals_request.rb index 0b32593d..24aaf725 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_existing_received_document_totals_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_existing_received_document_totals_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_existing_received_document_totals_response.rb b/lib/fattureincloud_ruby_sdk/models/get_existing_received_document_totals_response.rb index 505806a7..70954e9c 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_existing_received_document_totals_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_existing_received_document_totals_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_f24_response.rb b/lib/fattureincloud_ruby_sdk/models/get_f24_response.rb index f1f47695..5ea6ea88 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_f24_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_f24_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_issued_document_pre_create_info_response.rb b/lib/fattureincloud_ruby_sdk/models/get_issued_document_pre_create_info_response.rb index 1f2547c7..d8c7b8dd 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_issued_document_pre_create_info_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_issued_document_pre_create_info_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_issued_document_response.rb b/lib/fattureincloud_ruby_sdk/models/get_issued_document_response.rb index 84b1c76b..3e76a0b5 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_issued_document_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_issued_document_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_new_issued_document_totals_request.rb b/lib/fattureincloud_ruby_sdk/models/get_new_issued_document_totals_request.rb index ec085233..323c5790 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_new_issued_document_totals_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_new_issued_document_totals_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_new_issued_document_totals_response.rb b/lib/fattureincloud_ruby_sdk/models/get_new_issued_document_totals_response.rb index e6ae2c1e..5523923b 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_new_issued_document_totals_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_new_issued_document_totals_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_new_received_document_totals_request.rb b/lib/fattureincloud_ruby_sdk/models/get_new_received_document_totals_request.rb index 369a2bd7..4238ab3f 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_new_received_document_totals_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_new_received_document_totals_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_new_received_document_totals_response.rb b/lib/fattureincloud_ruby_sdk/models/get_new_received_document_totals_response.rb index a0eb08e8..4f2a3f25 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_new_received_document_totals_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_new_received_document_totals_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_payment_account_response.rb b/lib/fattureincloud_ruby_sdk/models/get_payment_account_response.rb index bac06882..07a09c08 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_payment_account_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_payment_account_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_payment_method_response.rb b/lib/fattureincloud_ruby_sdk/models/get_payment_method_response.rb index 88f73c9d..ae144225 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_payment_method_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_payment_method_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_product_response.rb b/lib/fattureincloud_ruby_sdk/models/get_product_response.rb index 05330dcd..670cad27 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_product_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_product_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_receipt_pre_create_info_response.rb b/lib/fattureincloud_ruby_sdk/models/get_receipt_pre_create_info_response.rb index c6c1c49a..f954c4c1 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_receipt_pre_create_info_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_receipt_pre_create_info_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_receipt_response.rb b/lib/fattureincloud_ruby_sdk/models/get_receipt_response.rb index 5b7b9f8c..877f327d 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_receipt_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_receipt_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_receipts_monthly_totals_response.rb b/lib/fattureincloud_ruby_sdk/models/get_receipts_monthly_totals_response.rb index e0706015..33625910 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_receipts_monthly_totals_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_receipts_monthly_totals_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_received_document_pre_create_info_response.rb b/lib/fattureincloud_ruby_sdk/models/get_received_document_pre_create_info_response.rb index 420aa83d..18c35cf6 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_received_document_pre_create_info_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_received_document_pre_create_info_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_received_document_response.rb b/lib/fattureincloud_ruby_sdk/models/get_received_document_response.rb index 72e49c07..cc0105e7 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_received_document_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_received_document_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_supplier_response.rb b/lib/fattureincloud_ruby_sdk/models/get_supplier_response.rb index 1a32cbad..87b43ad3 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_supplier_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_supplier_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_user_info_response.rb b/lib/fattureincloud_ruby_sdk/models/get_user_info_response.rb index bfff4636..e6fbb8bb 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_user_info_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_user_info_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_user_info_response_email_confirmation_state.rb b/lib/fattureincloud_ruby_sdk/models/get_user_info_response_email_confirmation_state.rb index faac89a1..48c489fb 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_user_info_response_email_confirmation_state.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_user_info_response_email_confirmation_state.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_user_info_response_info.rb b/lib/fattureincloud_ruby_sdk/models/get_user_info_response_info.rb index 1fdbccec..6229eab4 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_user_info_response_info.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_user_info_response_info.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_vat_type_response.rb b/lib/fattureincloud_ruby_sdk/models/get_vat_type_response.rb index 48042e43..07844c5e 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_vat_type_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_vat_type_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/get_webhooks_subscription_response.rb b/lib/fattureincloud_ruby_sdk/models/get_webhooks_subscription_response.rb index 933fb5f0..c3257951 100644 --- a/lib/fattureincloud_ruby_sdk/models/get_webhooks_subscription_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/get_webhooks_subscription_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/issued_document.rb b/lib/fattureincloud_ruby_sdk/models/issued_document.rb index f3c6457a..513354f5 100644 --- a/lib/fattureincloud_ruby_sdk/models/issued_document.rb +++ b/lib/fattureincloud_ruby_sdk/models/issued_document.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/issued_document_ei_data.rb b/lib/fattureincloud_ruby_sdk/models/issued_document_ei_data.rb index ce6cd308..2df5137d 100644 --- a/lib/fattureincloud_ruby_sdk/models/issued_document_ei_data.rb +++ b/lib/fattureincloud_ruby_sdk/models/issued_document_ei_data.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/issued_document_extra_data.rb b/lib/fattureincloud_ruby_sdk/models/issued_document_extra_data.rb index deb20510..daa85f56 100644 --- a/lib/fattureincloud_ruby_sdk/models/issued_document_extra_data.rb +++ b/lib/fattureincloud_ruby_sdk/models/issued_document_extra_data.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/issued_document_items_list_item.rb b/lib/fattureincloud_ruby_sdk/models/issued_document_items_list_item.rb index 8072a30b..7635f836 100644 --- a/lib/fattureincloud_ruby_sdk/models/issued_document_items_list_item.rb +++ b/lib/fattureincloud_ruby_sdk/models/issued_document_items_list_item.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/issued_document_options.rb b/lib/fattureincloud_ruby_sdk/models/issued_document_options.rb index 75265f46..ccef00c9 100644 --- a/lib/fattureincloud_ruby_sdk/models/issued_document_options.rb +++ b/lib/fattureincloud_ruby_sdk/models/issued_document_options.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/issued_document_payments_list_item.rb b/lib/fattureincloud_ruby_sdk/models/issued_document_payments_list_item.rb index dfa30f41..c7790b51 100644 --- a/lib/fattureincloud_ruby_sdk/models/issued_document_payments_list_item.rb +++ b/lib/fattureincloud_ruby_sdk/models/issued_document_payments_list_item.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/issued_document_payments_list_item_payment_terms.rb b/lib/fattureincloud_ruby_sdk/models/issued_document_payments_list_item_payment_terms.rb index cbb477c5..cc334111 100644 --- a/lib/fattureincloud_ruby_sdk/models/issued_document_payments_list_item_payment_terms.rb +++ b/lib/fattureincloud_ruby_sdk/models/issued_document_payments_list_item_payment_terms.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/issued_document_pre_create_info.rb b/lib/fattureincloud_ruby_sdk/models/issued_document_pre_create_info.rb index 7ab394e7..a4243def 100644 --- a/lib/fattureincloud_ruby_sdk/models/issued_document_pre_create_info.rb +++ b/lib/fattureincloud_ruby_sdk/models/issued_document_pre_create_info.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/issued_document_pre_create_info_default_values.rb b/lib/fattureincloud_ruby_sdk/models/issued_document_pre_create_info_default_values.rb index 08133a02..671c871b 100644 --- a/lib/fattureincloud_ruby_sdk/models/issued_document_pre_create_info_default_values.rb +++ b/lib/fattureincloud_ruby_sdk/models/issued_document_pre_create_info_default_values.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/issued_document_pre_create_info_extra_data_default_values.rb b/lib/fattureincloud_ruby_sdk/models/issued_document_pre_create_info_extra_data_default_values.rb index 9c23f652..18ba3f18 100644 --- a/lib/fattureincloud_ruby_sdk/models/issued_document_pre_create_info_extra_data_default_values.rb +++ b/lib/fattureincloud_ruby_sdk/models/issued_document_pre_create_info_extra_data_default_values.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/issued_document_pre_create_info_items_default_values.rb b/lib/fattureincloud_ruby_sdk/models/issued_document_pre_create_info_items_default_values.rb index d8a41285..f8cc80da 100644 --- a/lib/fattureincloud_ruby_sdk/models/issued_document_pre_create_info_items_default_values.rb +++ b/lib/fattureincloud_ruby_sdk/models/issued_document_pre_create_info_items_default_values.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/issued_document_status.rb b/lib/fattureincloud_ruby_sdk/models/issued_document_status.rb index 416225c3..e53f0c4c 100644 --- a/lib/fattureincloud_ruby_sdk/models/issued_document_status.rb +++ b/lib/fattureincloud_ruby_sdk/models/issued_document_status.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/issued_document_totals.rb b/lib/fattureincloud_ruby_sdk/models/issued_document_totals.rb index 96245eac..a634d52a 100644 --- a/lib/fattureincloud_ruby_sdk/models/issued_document_totals.rb +++ b/lib/fattureincloud_ruby_sdk/models/issued_document_totals.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/issued_document_type.rb b/lib/fattureincloud_ruby_sdk/models/issued_document_type.rb index 987e1a41..e9ece5da 100644 --- a/lib/fattureincloud_ruby_sdk/models/issued_document_type.rb +++ b/lib/fattureincloud_ruby_sdk/models/issued_document_type.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/join_issued_documents_response.rb b/lib/fattureincloud_ruby_sdk/models/join_issued_documents_response.rb index 3cf09231..394bd469 100644 --- a/lib/fattureincloud_ruby_sdk/models/join_issued_documents_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/join_issued_documents_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/language.rb b/lib/fattureincloud_ruby_sdk/models/language.rb index cfa9de47..b73d6680 100644 --- a/lib/fattureincloud_ruby_sdk/models/language.rb +++ b/lib/fattureincloud_ruby_sdk/models/language.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_archive_categories_response.rb b/lib/fattureincloud_ruby_sdk/models/list_archive_categories_response.rb index 41b50634..ba68971c 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_archive_categories_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_archive_categories_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_archive_documents_response.rb b/lib/fattureincloud_ruby_sdk/models/list_archive_documents_response.rb index 2626515f..c9c4dc99 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_archive_documents_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_archive_documents_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_archive_documents_response_page.rb b/lib/fattureincloud_ruby_sdk/models/list_archive_documents_response_page.rb index 3aa9ad2e..dc2af853 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_archive_documents_response_page.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_archive_documents_response_page.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_cashbook_entries_response.rb b/lib/fattureincloud_ruby_sdk/models/list_cashbook_entries_response.rb index 86a1e76f..d7b1071e 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_cashbook_entries_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_cashbook_entries_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_cities_response.rb b/lib/fattureincloud_ruby_sdk/models/list_cities_response.rb index 6cf6f0cb..7dd11c2b 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_cities_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_cities_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_clients_response.rb b/lib/fattureincloud_ruby_sdk/models/list_clients_response.rb index 3bed63c4..ffa5218f 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_clients_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_clients_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_clients_response_page.rb b/lib/fattureincloud_ruby_sdk/models/list_clients_response_page.rb index dcef999a..532e839e 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_clients_response_page.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_clients_response_page.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_cost_centers_response.rb b/lib/fattureincloud_ruby_sdk/models/list_cost_centers_response.rb index 5f127cba..eb76ecfa 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_cost_centers_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_cost_centers_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_countries_response.rb b/lib/fattureincloud_ruby_sdk/models/list_countries_response.rb index 46bc91fc..ae15d8a6 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_countries_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_countries_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_currencies_response.rb b/lib/fattureincloud_ruby_sdk/models/list_currencies_response.rb index 06356f09..438607fc 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_currencies_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_currencies_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_delivery_notes_default_causals_response.rb b/lib/fattureincloud_ruby_sdk/models/list_delivery_notes_default_causals_response.rb index 11679b24..97dc5eab 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_delivery_notes_default_causals_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_delivery_notes_default_causals_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_detailed_countries_response.rb b/lib/fattureincloud_ruby_sdk/models/list_detailed_countries_response.rb index b3080d23..eb30c355 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_detailed_countries_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_detailed_countries_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_emails_response.rb b/lib/fattureincloud_ruby_sdk/models/list_emails_response.rb index 55ed7c73..d33eb274 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_emails_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_emails_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_emails_response_page.rb b/lib/fattureincloud_ruby_sdk/models/list_emails_response_page.rb index 86d7e3f4..861a1021 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_emails_response_page.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_emails_response_page.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_f24_response.rb b/lib/fattureincloud_ruby_sdk/models/list_f24_response.rb index 86a8cc0d..339a547a 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_f24_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_f24_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_f24_response_aggregated_data.rb b/lib/fattureincloud_ruby_sdk/models/list_f24_response_aggregated_data.rb index 542b9a54..634863df 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_f24_response_aggregated_data.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_f24_response_aggregated_data.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_f24_response_aggregation.rb b/lib/fattureincloud_ruby_sdk/models/list_f24_response_aggregation.rb index 260c81ef..26dcb14c 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_f24_response_aggregation.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_f24_response_aggregation.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_f24_response_page.rb b/lib/fattureincloud_ruby_sdk/models/list_f24_response_page.rb index 6fd6874d..82aaf6b9 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_f24_response_page.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_f24_response_page.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_issued_documents_response.rb b/lib/fattureincloud_ruby_sdk/models/list_issued_documents_response.rb index 613fe724..9b09d5ae 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_issued_documents_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_issued_documents_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_issued_documents_response_page.rb b/lib/fattureincloud_ruby_sdk/models/list_issued_documents_response_page.rb index dd8a4e6b..de36617c 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_issued_documents_response_page.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_issued_documents_response_page.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_languages_response.rb b/lib/fattureincloud_ruby_sdk/models/list_languages_response.rb index 398ab635..45a0446e 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_languages_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_languages_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_payment_accounts_response.rb b/lib/fattureincloud_ruby_sdk/models/list_payment_accounts_response.rb index 1323c200..eabc8c5b 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_payment_accounts_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_payment_accounts_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_payment_methods_response.rb b/lib/fattureincloud_ruby_sdk/models/list_payment_methods_response.rb index 3e6c0163..417518d5 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_payment_methods_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_payment_methods_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_product_categories_response.rb b/lib/fattureincloud_ruby_sdk/models/list_product_categories_response.rb index 0d5340ab..912981bf 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_product_categories_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_product_categories_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_products_response.rb b/lib/fattureincloud_ruby_sdk/models/list_products_response.rb index 893e86ee..31150a54 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_products_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_products_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_products_response_page.rb b/lib/fattureincloud_ruby_sdk/models/list_products_response_page.rb index 0ba79749..62d71151 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_products_response_page.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_products_response_page.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_receipts_response.rb b/lib/fattureincloud_ruby_sdk/models/list_receipts_response.rb index b874de0d..16d35c1a 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_receipts_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_receipts_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_receipts_response_page.rb b/lib/fattureincloud_ruby_sdk/models/list_receipts_response_page.rb index 74f1db39..eb68e1d3 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_receipts_response_page.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_receipts_response_page.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_received_document_categories_response.rb b/lib/fattureincloud_ruby_sdk/models/list_received_document_categories_response.rb index 514ece5d..62fe2128 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_received_document_categories_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_received_document_categories_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_received_documents_response.rb b/lib/fattureincloud_ruby_sdk/models/list_received_documents_response.rb index 0f2cba85..12b25011 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_received_documents_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_received_documents_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_received_documents_response_page.rb b/lib/fattureincloud_ruby_sdk/models/list_received_documents_response_page.rb index acfc7f79..b69fd24f 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_received_documents_response_page.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_received_documents_response_page.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_revenue_centers_response.rb b/lib/fattureincloud_ruby_sdk/models/list_revenue_centers_response.rb index 7e1125f2..bbaf3222 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_revenue_centers_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_revenue_centers_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_suppliers_response.rb b/lib/fattureincloud_ruby_sdk/models/list_suppliers_response.rb index 31e3158a..a1ccb25c 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_suppliers_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_suppliers_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_suppliers_response_page.rb b/lib/fattureincloud_ruby_sdk/models/list_suppliers_response_page.rb index 4ada2cef..2b3d5faa 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_suppliers_response_page.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_suppliers_response_page.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_templates_response.rb b/lib/fattureincloud_ruby_sdk/models/list_templates_response.rb index 8d6ebb90..6aa13500 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_templates_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_templates_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_units_of_measure_response.rb b/lib/fattureincloud_ruby_sdk/models/list_units_of_measure_response.rb index e4429289..d0a671b5 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_units_of_measure_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_units_of_measure_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_user_companies_response.rb b/lib/fattureincloud_ruby_sdk/models/list_user_companies_response.rb index 782c7c75..313ddcfe 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_user_companies_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_user_companies_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_user_companies_response_data.rb b/lib/fattureincloud_ruby_sdk/models/list_user_companies_response_data.rb index 133cb1e2..47898146 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_user_companies_response_data.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_user_companies_response_data.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_vat_types_response.rb b/lib/fattureincloud_ruby_sdk/models/list_vat_types_response.rb index 795ddbc4..7e754b6b 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_vat_types_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_vat_types_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/list_webhooks_subscriptions_response.rb b/lib/fattureincloud_ruby_sdk/models/list_webhooks_subscriptions_response.rb index 81540a4f..9ea948f3 100644 --- a/lib/fattureincloud_ruby_sdk/models/list_webhooks_subscriptions_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/list_webhooks_subscriptions_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_archive_document_request.rb b/lib/fattureincloud_ruby_sdk/models/modify_archive_document_request.rb index ce63bcbc..430002a4 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_archive_document_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_archive_document_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_archive_document_response.rb b/lib/fattureincloud_ruby_sdk/models/modify_archive_document_response.rb index 4fb8b705..67f2c337 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_archive_document_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_archive_document_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_cashbook_entry_request.rb b/lib/fattureincloud_ruby_sdk/models/modify_cashbook_entry_request.rb index bed855c9..bf350d86 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_cashbook_entry_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_cashbook_entry_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_cashbook_entry_response.rb b/lib/fattureincloud_ruby_sdk/models/modify_cashbook_entry_response.rb index ec61773c..b67265ed 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_cashbook_entry_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_cashbook_entry_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_client_request.rb b/lib/fattureincloud_ruby_sdk/models/modify_client_request.rb index e5683a09..aec832ed 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_client_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_client_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_client_response.rb b/lib/fattureincloud_ruby_sdk/models/modify_client_response.rb index 4efceab5..962be33f 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_client_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_client_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_f24_request.rb b/lib/fattureincloud_ruby_sdk/models/modify_f24_request.rb index 638d913c..df96b996 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_f24_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_f24_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_f24_response.rb b/lib/fattureincloud_ruby_sdk/models/modify_f24_response.rb index ef879176..fb96413c 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_f24_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_f24_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_issued_document_request.rb b/lib/fattureincloud_ruby_sdk/models/modify_issued_document_request.rb index b5ee0652..f07101d8 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_issued_document_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_issued_document_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_issued_document_response.rb b/lib/fattureincloud_ruby_sdk/models/modify_issued_document_response.rb index 53a60ad0..608f53ee 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_issued_document_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_issued_document_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_payment_account_request.rb b/lib/fattureincloud_ruby_sdk/models/modify_payment_account_request.rb index 10740bcb..ba01413d 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_payment_account_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_payment_account_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_payment_account_response.rb b/lib/fattureincloud_ruby_sdk/models/modify_payment_account_response.rb index d6ad20c9..cc783723 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_payment_account_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_payment_account_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_payment_method_request.rb b/lib/fattureincloud_ruby_sdk/models/modify_payment_method_request.rb index 969fe10e..e0531e1e 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_payment_method_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_payment_method_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_payment_method_response.rb b/lib/fattureincloud_ruby_sdk/models/modify_payment_method_response.rb index 32ea0da6..a3d9658e 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_payment_method_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_payment_method_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_product_request.rb b/lib/fattureincloud_ruby_sdk/models/modify_product_request.rb index 2f0b057f..0a5abced 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_product_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_product_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_product_response.rb b/lib/fattureincloud_ruby_sdk/models/modify_product_response.rb index 8f078921..421a95e3 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_product_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_product_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_receipt_request.rb b/lib/fattureincloud_ruby_sdk/models/modify_receipt_request.rb index 184b0efa..e99a88d9 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_receipt_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_receipt_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_receipt_response.rb b/lib/fattureincloud_ruby_sdk/models/modify_receipt_response.rb index 7393edcb..562f32b9 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_receipt_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_receipt_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_received_document_request.rb b/lib/fattureincloud_ruby_sdk/models/modify_received_document_request.rb index 2bef3625..edd66564 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_received_document_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_received_document_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_received_document_response.rb b/lib/fattureincloud_ruby_sdk/models/modify_received_document_response.rb index 125a2381..a6f2b536 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_received_document_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_received_document_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_supplier_request.rb b/lib/fattureincloud_ruby_sdk/models/modify_supplier_request.rb index e1428f14..0ecea622 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_supplier_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_supplier_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_supplier_response.rb b/lib/fattureincloud_ruby_sdk/models/modify_supplier_response.rb index ad09b5fe..df06c717 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_supplier_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_supplier_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_vat_type_request.rb b/lib/fattureincloud_ruby_sdk/models/modify_vat_type_request.rb index be30953a..058b32f3 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_vat_type_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_vat_type_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_vat_type_response.rb b/lib/fattureincloud_ruby_sdk/models/modify_vat_type_response.rb index ca475b66..72ead130 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_vat_type_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_vat_type_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_webhooks_subscription_request.rb b/lib/fattureincloud_ruby_sdk/models/modify_webhooks_subscription_request.rb index 54402110..79e9c883 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_webhooks_subscription_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_webhooks_subscription_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/modify_webhooks_subscription_response.rb b/lib/fattureincloud_ruby_sdk/models/modify_webhooks_subscription_response.rb index 0522ffdd..8b862e1d 100644 --- a/lib/fattureincloud_ruby_sdk/models/modify_webhooks_subscription_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/modify_webhooks_subscription_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/monthly_total.rb b/lib/fattureincloud_ruby_sdk/models/monthly_total.rb index 19ae7cd1..bcf02eed 100644 --- a/lib/fattureincloud_ruby_sdk/models/monthly_total.rb +++ b/lib/fattureincloud_ruby_sdk/models/monthly_total.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/original_document_type.rb b/lib/fattureincloud_ruby_sdk/models/original_document_type.rb index 134725fd..c3f17f73 100644 --- a/lib/fattureincloud_ruby_sdk/models/original_document_type.rb +++ b/lib/fattureincloud_ruby_sdk/models/original_document_type.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/pagination.rb b/lib/fattureincloud_ruby_sdk/models/pagination.rb index 8b82162d..c2660dab 100644 --- a/lib/fattureincloud_ruby_sdk/models/pagination.rb +++ b/lib/fattureincloud_ruby_sdk/models/pagination.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/payment_account.rb b/lib/fattureincloud_ruby_sdk/models/payment_account.rb index 15ca7552..85a1aee4 100644 --- a/lib/fattureincloud_ruby_sdk/models/payment_account.rb +++ b/lib/fattureincloud_ruby_sdk/models/payment_account.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/payment_account_type.rb b/lib/fattureincloud_ruby_sdk/models/payment_account_type.rb index 39d73d07..2ebd550e 100644 --- a/lib/fattureincloud_ruby_sdk/models/payment_account_type.rb +++ b/lib/fattureincloud_ruby_sdk/models/payment_account_type.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/payment_method.rb b/lib/fattureincloud_ruby_sdk/models/payment_method.rb index 486b6d8a..cbde33fb 100644 --- a/lib/fattureincloud_ruby_sdk/models/payment_method.rb +++ b/lib/fattureincloud_ruby_sdk/models/payment_method.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/payment_method_details.rb b/lib/fattureincloud_ruby_sdk/models/payment_method_details.rb index 62ddc08e..c5d89665 100644 --- a/lib/fattureincloud_ruby_sdk/models/payment_method_details.rb +++ b/lib/fattureincloud_ruby_sdk/models/payment_method_details.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/payment_method_type.rb b/lib/fattureincloud_ruby_sdk/models/payment_method_type.rb index 0a205a30..7b80d1b2 100644 --- a/lib/fattureincloud_ruby_sdk/models/payment_method_type.rb +++ b/lib/fattureincloud_ruby_sdk/models/payment_method_type.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/payment_terms_type.rb b/lib/fattureincloud_ruby_sdk/models/payment_terms_type.rb index 52643d64..c9d45939 100644 --- a/lib/fattureincloud_ruby_sdk/models/payment_terms_type.rb +++ b/lib/fattureincloud_ruby_sdk/models/payment_terms_type.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/permission_level.rb b/lib/fattureincloud_ruby_sdk/models/permission_level.rb index 8b3c863f..577e4f64 100644 --- a/lib/fattureincloud_ruby_sdk/models/permission_level.rb +++ b/lib/fattureincloud_ruby_sdk/models/permission_level.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/permissions.rb b/lib/fattureincloud_ruby_sdk/models/permissions.rb index 81c301db..5ae17d9b 100644 --- a/lib/fattureincloud_ruby_sdk/models/permissions.rb +++ b/lib/fattureincloud_ruby_sdk/models/permissions.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/permissions_fic_issued_documents_detailed.rb b/lib/fattureincloud_ruby_sdk/models/permissions_fic_issued_documents_detailed.rb index dfe2114c..6c508b10 100644 --- a/lib/fattureincloud_ruby_sdk/models/permissions_fic_issued_documents_detailed.rb +++ b/lib/fattureincloud_ruby_sdk/models/permissions_fic_issued_documents_detailed.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/product.rb b/lib/fattureincloud_ruby_sdk/models/product.rb index 3fba89d1..9a55cb0d 100644 --- a/lib/fattureincloud_ruby_sdk/models/product.rb +++ b/lib/fattureincloud_ruby_sdk/models/product.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/receipt.rb b/lib/fattureincloud_ruby_sdk/models/receipt.rb index 2676faf1..794e815b 100644 --- a/lib/fattureincloud_ruby_sdk/models/receipt.rb +++ b/lib/fattureincloud_ruby_sdk/models/receipt.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/receipt_items_list_item.rb b/lib/fattureincloud_ruby_sdk/models/receipt_items_list_item.rb index da76e90d..d7df3324 100644 --- a/lib/fattureincloud_ruby_sdk/models/receipt_items_list_item.rb +++ b/lib/fattureincloud_ruby_sdk/models/receipt_items_list_item.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/receipt_pre_create_info.rb b/lib/fattureincloud_ruby_sdk/models/receipt_pre_create_info.rb index 0488a939..5afa9b21 100644 --- a/lib/fattureincloud_ruby_sdk/models/receipt_pre_create_info.rb +++ b/lib/fattureincloud_ruby_sdk/models/receipt_pre_create_info.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/receipt_type.rb b/lib/fattureincloud_ruby_sdk/models/receipt_type.rb index e8359614..d58060e7 100644 --- a/lib/fattureincloud_ruby_sdk/models/receipt_type.rb +++ b/lib/fattureincloud_ruby_sdk/models/receipt_type.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/received_document.rb b/lib/fattureincloud_ruby_sdk/models/received_document.rb index 607d260c..d73768cc 100644 --- a/lib/fattureincloud_ruby_sdk/models/received_document.rb +++ b/lib/fattureincloud_ruby_sdk/models/received_document.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/received_document_info.rb b/lib/fattureincloud_ruby_sdk/models/received_document_info.rb index 9290f9ef..15da4d50 100644 --- a/lib/fattureincloud_ruby_sdk/models/received_document_info.rb +++ b/lib/fattureincloud_ruby_sdk/models/received_document_info.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/received_document_info_default_values.rb b/lib/fattureincloud_ruby_sdk/models/received_document_info_default_values.rb index c8607888..79b10723 100644 --- a/lib/fattureincloud_ruby_sdk/models/received_document_info_default_values.rb +++ b/lib/fattureincloud_ruby_sdk/models/received_document_info_default_values.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/received_document_info_items_default_values.rb b/lib/fattureincloud_ruby_sdk/models/received_document_info_items_default_values.rb index 6aa6a978..76bc7369 100644 --- a/lib/fattureincloud_ruby_sdk/models/received_document_info_items_default_values.rb +++ b/lib/fattureincloud_ruby_sdk/models/received_document_info_items_default_values.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/received_document_items_list_item.rb b/lib/fattureincloud_ruby_sdk/models/received_document_items_list_item.rb index dce98657..fe9f3157 100644 --- a/lib/fattureincloud_ruby_sdk/models/received_document_items_list_item.rb +++ b/lib/fattureincloud_ruby_sdk/models/received_document_items_list_item.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/received_document_payments_list_item.rb b/lib/fattureincloud_ruby_sdk/models/received_document_payments_list_item.rb index dffa190c..46b41336 100644 --- a/lib/fattureincloud_ruby_sdk/models/received_document_payments_list_item.rb +++ b/lib/fattureincloud_ruby_sdk/models/received_document_payments_list_item.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/received_document_payments_list_item_payment_terms.rb b/lib/fattureincloud_ruby_sdk/models/received_document_payments_list_item_payment_terms.rb index 6b78a5f8..16487933 100644 --- a/lib/fattureincloud_ruby_sdk/models/received_document_payments_list_item_payment_terms.rb +++ b/lib/fattureincloud_ruby_sdk/models/received_document_payments_list_item_payment_terms.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/received_document_totals.rb b/lib/fattureincloud_ruby_sdk/models/received_document_totals.rb index 46887b0f..8a0f22fd 100644 --- a/lib/fattureincloud_ruby_sdk/models/received_document_totals.rb +++ b/lib/fattureincloud_ruby_sdk/models/received_document_totals.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/received_document_type.rb b/lib/fattureincloud_ruby_sdk/models/received_document_type.rb index 34feecf9..1259c09f 100644 --- a/lib/fattureincloud_ruby_sdk/models/received_document_type.rb +++ b/lib/fattureincloud_ruby_sdk/models/received_document_type.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/schedule_email_request.rb b/lib/fattureincloud_ruby_sdk/models/schedule_email_request.rb index ef69813b..7dcda148 100644 --- a/lib/fattureincloud_ruby_sdk/models/schedule_email_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/schedule_email_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/send_e_invoice_request.rb b/lib/fattureincloud_ruby_sdk/models/send_e_invoice_request.rb index 3698018d..17c67a64 100644 --- a/lib/fattureincloud_ruby_sdk/models/send_e_invoice_request.rb +++ b/lib/fattureincloud_ruby_sdk/models/send_e_invoice_request.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/send_e_invoice_request_data.rb b/lib/fattureincloud_ruby_sdk/models/send_e_invoice_request_data.rb index 80aa6d17..2a7b70b5 100644 --- a/lib/fattureincloud_ruby_sdk/models/send_e_invoice_request_data.rb +++ b/lib/fattureincloud_ruby_sdk/models/send_e_invoice_request_data.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/send_e_invoice_request_options.rb b/lib/fattureincloud_ruby_sdk/models/send_e_invoice_request_options.rb index ec2b9ff7..358e0129 100644 --- a/lib/fattureincloud_ruby_sdk/models/send_e_invoice_request_options.rb +++ b/lib/fattureincloud_ruby_sdk/models/send_e_invoice_request_options.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/send_e_invoice_response.rb b/lib/fattureincloud_ruby_sdk/models/send_e_invoice_response.rb index 08d87af7..2c92a974 100644 --- a/lib/fattureincloud_ruby_sdk/models/send_e_invoice_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/send_e_invoice_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/send_e_invoice_response_data.rb b/lib/fattureincloud_ruby_sdk/models/send_e_invoice_response_data.rb index 0ed45c17..05980e73 100644 --- a/lib/fattureincloud_ruby_sdk/models/send_e_invoice_response_data.rb +++ b/lib/fattureincloud_ruby_sdk/models/send_e_invoice_response_data.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/sender_email.rb b/lib/fattureincloud_ruby_sdk/models/sender_email.rb index 194e2256..f04e09f0 100644 --- a/lib/fattureincloud_ruby_sdk/models/sender_email.rb +++ b/lib/fattureincloud_ruby_sdk/models/sender_email.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/show_totals_mode.rb b/lib/fattureincloud_ruby_sdk/models/show_totals_mode.rb index 5e0b580d..0a76d180 100644 --- a/lib/fattureincloud_ruby_sdk/models/show_totals_mode.rb +++ b/lib/fattureincloud_ruby_sdk/models/show_totals_mode.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/supplier.rb b/lib/fattureincloud_ruby_sdk/models/supplier.rb index 00ff8dca..7fcb085c 100644 --- a/lib/fattureincloud_ruby_sdk/models/supplier.rb +++ b/lib/fattureincloud_ruby_sdk/models/supplier.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/supplier_type.rb b/lib/fattureincloud_ruby_sdk/models/supplier_type.rb index 279c6d89..fbd7a233 100644 --- a/lib/fattureincloud_ruby_sdk/models/supplier_type.rb +++ b/lib/fattureincloud_ruby_sdk/models/supplier_type.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/transform_issued_document_response.rb b/lib/fattureincloud_ruby_sdk/models/transform_issued_document_response.rb index 5f60a668..73d281ce 100644 --- a/lib/fattureincloud_ruby_sdk/models/transform_issued_document_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/transform_issued_document_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/upload_archive_attachment_response.rb b/lib/fattureincloud_ruby_sdk/models/upload_archive_attachment_response.rb index 9475066c..0ae2f577 100644 --- a/lib/fattureincloud_ruby_sdk/models/upload_archive_attachment_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/upload_archive_attachment_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/upload_f24_attachment_response.rb b/lib/fattureincloud_ruby_sdk/models/upload_f24_attachment_response.rb index c798b360..088273da 100644 --- a/lib/fattureincloud_ruby_sdk/models/upload_f24_attachment_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/upload_f24_attachment_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/upload_issued_document_attachment_response.rb b/lib/fattureincloud_ruby_sdk/models/upload_issued_document_attachment_response.rb index df3f77b5..b1a5cdee 100644 --- a/lib/fattureincloud_ruby_sdk/models/upload_issued_document_attachment_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/upload_issued_document_attachment_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/upload_received_document_attachment_response.rb b/lib/fattureincloud_ruby_sdk/models/upload_received_document_attachment_response.rb index d6c26b20..484d10ff 100644 --- a/lib/fattureincloud_ruby_sdk/models/upload_received_document_attachment_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/upload_received_document_attachment_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/user.rb b/lib/fattureincloud_ruby_sdk/models/user.rb index 7f140b5b..3e4721d1 100644 --- a/lib/fattureincloud_ruby_sdk/models/user.rb +++ b/lib/fattureincloud_ruby_sdk/models/user.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/user_company_role.rb b/lib/fattureincloud_ruby_sdk/models/user_company_role.rb index 76a44190..8845d470 100644 --- a/lib/fattureincloud_ruby_sdk/models/user_company_role.rb +++ b/lib/fattureincloud_ruby_sdk/models/user_company_role.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/vat_item.rb b/lib/fattureincloud_ruby_sdk/models/vat_item.rb index 4ffca0bf..fc2fec77 100644 --- a/lib/fattureincloud_ruby_sdk/models/vat_item.rb +++ b/lib/fattureincloud_ruby_sdk/models/vat_item.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/vat_kind.rb b/lib/fattureincloud_ruby_sdk/models/vat_kind.rb index 55e930f0..fa8ed23b 100644 --- a/lib/fattureincloud_ruby_sdk/models/vat_kind.rb +++ b/lib/fattureincloud_ruby_sdk/models/vat_kind.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/vat_type.rb b/lib/fattureincloud_ruby_sdk/models/vat_type.rb index b4fe683a..9dca1386 100644 --- a/lib/fattureincloud_ruby_sdk/models/vat_type.rb +++ b/lib/fattureincloud_ruby_sdk/models/vat_type.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_error_response.rb b/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_error_response.rb index 72e9ff07..af7e03d2 100644 --- a/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_error_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_error_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_error_response_error.rb b/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_error_response_error.rb index d669f8ac..a96e978a 100644 --- a/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_error_response_error.rb +++ b/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_error_response_error.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_error_response_error_validation_result.rb b/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_error_response_error_validation_result.rb index b549e996..2c3ffe87 100644 --- a/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_error_response_error_validation_result.rb +++ b/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_error_response_error_validation_result.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_error_response_extra.rb b/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_error_response_extra.rb index 657b6ad3..5226eac8 100644 --- a/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_error_response_extra.rb +++ b/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_error_response_extra.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_response.rb b/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_response.rb index 247aacbe..b86434eb 100644 --- a/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_response.rb +++ b/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_response.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_response_data.rb b/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_response_data.rb index 1403ec91..e564305b 100644 --- a/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_response_data.rb +++ b/lib/fattureincloud_ruby_sdk/models/verify_e_invoice_xml_response_data.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/webhooks_subscription.rb b/lib/fattureincloud_ruby_sdk/models/webhooks_subscription.rb index 206edc39..4da3d426 100644 --- a/lib/fattureincloud_ruby_sdk/models/webhooks_subscription.rb +++ b/lib/fattureincloud_ruby_sdk/models/webhooks_subscription.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/webhooks_subscription_config.rb b/lib/fattureincloud_ruby_sdk/models/webhooks_subscription_config.rb index 0a7eaf50..f7fb694e 100644 --- a/lib/fattureincloud_ruby_sdk/models/webhooks_subscription_config.rb +++ b/lib/fattureincloud_ruby_sdk/models/webhooks_subscription_config.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/models/webhooks_subscription_mapping.rb b/lib/fattureincloud_ruby_sdk/models/webhooks_subscription_mapping.rb index 7ca6a858..8059889d 100644 --- a/lib/fattureincloud_ruby_sdk/models/webhooks_subscription_mapping.rb +++ b/lib/fattureincloud_ruby_sdk/models/webhooks_subscription_mapping.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 diff --git a/lib/fattureincloud_ruby_sdk/version.rb b/lib/fattureincloud_ruby_sdk/version.rb index c0235268..d12d46ac 100644 --- a/lib/fattureincloud_ruby_sdk/version.rb +++ b/lib/fattureincloud_ruby_sdk/version.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0 @@ -11,5 +11,5 @@ =end module FattureInCloud_Ruby_Sdk - VERSION = '2.0.21' + VERSION = '2.1.0' end diff --git a/sdk-version.yaml b/sdk-version.yaml index c2a39b65..c4668f54 100644 --- a/sdk-version.yaml +++ b/sdk-version.yaml @@ -1,2 +1,2 @@ info: - version: 2.0.21 + version: 2.1.0 diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index f63ea1a8..0c7bc38f 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -3,7 +3,7 @@ #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.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. -The version of the OpenAPI document: 2.0.33 +The version of the OpenAPI document: 2.1.0 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech Generator version: 7.6.0