diff --git a/README.md b/README.md index 08dafb2f..a3c5c904 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,8 @@ To get an API key, [sign up here](https://intrinio.com/). Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. -- API version: 2.64.1 -- Package version: 6.29.1 +- API version: 2.66.2 +- Package version: 6.30.0 ## Requirements. diff --git a/docs/SecurityApi.md b/docs/SecurityApi.md index de48b664..f2921825 100644 --- a/docs/SecurityApi.md +++ b/docs/SecurityApi.md @@ -980,7 +980,7 @@ Name | Type | Description | Notes [//]: # (START_OVERVIEW) -> ApiResponseSecurityIntervalPrices get_security_interval_prices(identifier, interval_size, source=source, start_date=start_date, start_time=start_time, end_date=end_date, end_time=end_time, timezone=timezone, page_size=page_size, split_adjusted=split_adjusted, next_page=next_page) +> ApiResponseSecurityIntervalPrices get_security_interval_prices(identifier, interval_size, source=source, start_date=start_date, start_time=start_time, end_date=end_date, end_time=end_time, timezone=timezone, page_size=page_size, split_adjusted=split_adjusted, include_quote_only_bars=include_quote_only_bars, next_page=next_page) #### Interval Stock Prices for Security @@ -1005,15 +1005,16 @@ identifier = 'AAPL' interval_size = '15m' source = '' start_date = '2023-01-01' -start_time = '' +start_time = '33300' end_date = '2023-02-01' -end_time = '' +end_time = '33300' timezone = 'UTC' page_size = 100 split_adjusted = False +include_quote_only_bars = False next_page = '' -response = intrinio.SecurityApi().get_security_interval_prices(identifier, interval_size, source=source, start_date=start_date, start_time=start_time, end_date=end_date, end_time=end_time, timezone=timezone, page_size=page_size, split_adjusted=split_adjusted, next_page=next_page) +response = intrinio.SecurityApi().get_security_interval_prices(identifier, interval_size, source=source, start_date=start_date, start_time=start_time, end_date=end_date, end_time=end_time, timezone=timezone, page_size=page_size, split_adjusted=split_adjusted, include_quote_only_bars=include_quote_only_bars, next_page=next_page) print(response) # Note: For a Pandas DataFrame, import Pandas and use pd.DataFrame(response.property_name_dict) @@ -1039,6 +1040,7 @@ Name | Type | Description | Notes **timezone** | str| Returns trading times in this timezone | [optional] [default to UTC]   **page_size** | int| The number of results to return | [optional] [default to 100]   **split_adjusted** | bool| Whether to return the values adjusted for splits or not. Default is False. | [optional] [default to False]   + **include_quote_only_bars** | bool| If True, also include bars where no trades occurred but quotes did. | [optional] [default to False]   **next_page** | str| Gets the next page of data from a previous API call | [optional]  
@@ -1080,7 +1082,7 @@ Name | Type | Description | Notes #### Intraday Stock Prices for Security -Return intraday stock prices for the Security with the given `identifier` +Deprecated. Return intraday stock prices for the Security with the given `identifier` [//]: # (END_OVERVIEW) @@ -3997,7 +3999,7 @@ Name | Type | Description | Notes [//]: # (START_OVERVIEW) -> ApiResponseSecurityQuote get_security_quote(identifier, active_only=active_only, next_page=next_page) +> ApiResponseSecurityQuote get_security_quote(identifier, active_only=active_only, source=source, next_page=next_page) #### Quote for a Security @@ -4020,9 +4022,10 @@ intrinio.ApiClient().allow_retries(True) identifier = 'AAPL' active_only = False +source = 'delayed_sip' next_page = '' -response = intrinio.SecurityApi().get_security_quote(identifier, active_only=active_only, next_page=next_page) +response = intrinio.SecurityApi().get_security_quote(identifier, active_only=active_only, source=source, next_page=next_page) print(response) # Note: For a Pandas DataFrame, import Pandas and use pd.DataFrame(response.property_name_dict) @@ -4040,6 +4043,7 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **identifier** | str| A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) |   **active_only** | bool| Whether to return only realtime prices from today. | [optional] [default to False]   + **source** | str| Return the realtime price from the specified source instead of the most recent. | [optional]   **next_page** | str| Gets the next page of data from a previous API call | [optional]  
diff --git a/docs/StockPriceInterval.md b/docs/StockPriceInterval.md index b65c143e..f9415d48 100644 --- a/docs/StockPriceInterval.md +++ b/docs/StockPriceInterval.md @@ -22,6 +22,20 @@ Name | Type | Description **interval** | str | The size of the interval.   **average** | float | The average trade price of an individual stock during the interval.   **change** | float | The change ratio from open to close. ((Close - Open)/Open).   +**bid_high** | float | The highest bid price from the interval.   +**bid_low** | float | The lowest bid price from the interval.   +**bid_close** | float | The last bid price from the interval.   +**bid_open** | float | The first bid price from the interval.   +**bid_first_time** | datetime | The timestamp that represents the first bid time from the interval span.   +**bid_last_time** | datetime | The timestamp that represents the last bid time from the interval span.   +**bid_change_percent** | float | The ratio of the close to open bid difference, in percent.   +**ask_high** | float | The highest ask price from the interval.   +**ask_low** | float | The lowest ask price from the interval.   +**ask_close** | float | The last ask price from the interval.   +**ask_open** | float | The first ask price from the interval.   +**ask_first_time** | datetime | The timestamp that represents the first ask time from the interval span.   +**ask_last_time** | datetime | The timestamp that represents the last ask time from the interval span.   +**ask_change_percent** | float | The ratio of the close to open ask difference, in percent.   [//]: # (END_DEFINITION) diff --git a/intrinio_sdk/__init__.py b/intrinio_sdk/__init__.py index 7c88aa47..373f5bc0 100644 --- a/intrinio_sdk/__init__.py +++ b/intrinio_sdk/__init__.py @@ -7,7 +7,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/api/bulk_downloads_api.py b/intrinio_sdk/api/bulk_downloads_api.py index 82df2a69..273d5b43 100644 --- a/intrinio_sdk/api/bulk_downloads_api.py +++ b/intrinio_sdk/api/bulk_downloads_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/api/company_api.py b/intrinio_sdk/api/company_api.py index d95d596e..1a100b08 100644 --- a/intrinio_sdk/api/company_api.py +++ b/intrinio_sdk/api/company_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/api/data_point_api.py b/intrinio_sdk/api/data_point_api.py index 5619505a..932f7e44 100644 --- a/intrinio_sdk/api/data_point_api.py +++ b/intrinio_sdk/api/data_point_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/api/data_tag_api.py b/intrinio_sdk/api/data_tag_api.py index 9a779153..06b6784c 100644 --- a/intrinio_sdk/api/data_tag_api.py +++ b/intrinio_sdk/api/data_tag_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/api/esg_api.py b/intrinio_sdk/api/esg_api.py index 738b27e7..cf0bda88 100644 --- a/intrinio_sdk/api/esg_api.py +++ b/intrinio_sdk/api/esg_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/api/et_fs_api.py b/intrinio_sdk/api/et_fs_api.py index bf5e4d84..c702b63f 100644 --- a/intrinio_sdk/api/et_fs_api.py +++ b/intrinio_sdk/api/et_fs_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/api/filing_api.py b/intrinio_sdk/api/filing_api.py index c57ed365..1adac0a6 100644 --- a/intrinio_sdk/api/filing_api.py +++ b/intrinio_sdk/api/filing_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/api/forex_api.py b/intrinio_sdk/api/forex_api.py index d28b2591..0388a9f0 100644 --- a/intrinio_sdk/api/forex_api.py +++ b/intrinio_sdk/api/forex_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/api/fundamentals_api.py b/intrinio_sdk/api/fundamentals_api.py index 3fd0ff4f..f3d4ffb4 100644 --- a/intrinio_sdk/api/fundamentals_api.py +++ b/intrinio_sdk/api/fundamentals_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/api/historical_data_api.py b/intrinio_sdk/api/historical_data_api.py index 7f3cc38d..12de150b 100644 --- a/intrinio_sdk/api/historical_data_api.py +++ b/intrinio_sdk/api/historical_data_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/api/index_api.py b/intrinio_sdk/api/index_api.py index 7800ef56..041fefb8 100644 --- a/intrinio_sdk/api/index_api.py +++ b/intrinio_sdk/api/index_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/api/insider_transaction_filings_api.py b/intrinio_sdk/api/insider_transaction_filings_api.py index 3f363521..5f20dfc1 100644 --- a/intrinio_sdk/api/insider_transaction_filings_api.py +++ b/intrinio_sdk/api/insider_transaction_filings_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/api/market_api.py b/intrinio_sdk/api/market_api.py index be355704..cb9f86d1 100644 --- a/intrinio_sdk/api/market_api.py +++ b/intrinio_sdk/api/market_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/api/municipality_api.py b/intrinio_sdk/api/municipality_api.py index e7eb0684..310623b7 100644 --- a/intrinio_sdk/api/municipality_api.py +++ b/intrinio_sdk/api/municipality_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/api/options_api.py b/intrinio_sdk/api/options_api.py index 0889d645..1b48db7b 100644 --- a/intrinio_sdk/api/options_api.py +++ b/intrinio_sdk/api/options_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/api/owners_api.py b/intrinio_sdk/api/owners_api.py index fc01e41d..4c5a5dc3 100644 --- a/intrinio_sdk/api/owners_api.py +++ b/intrinio_sdk/api/owners_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/api/security_api.py b/intrinio_sdk/api/security_api.py index 2ce3f4ff..950b69a1 100644 --- a/intrinio_sdk/api/security_api.py +++ b/intrinio_sdk/api/security_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -1226,6 +1226,7 @@ def get_security_interval_prices(self, identifier, interval_size, **kwargs): # :param str timezone: Returns trading times in this timezone :param int page_size: The number of results to return :param bool split_adjusted: Whether to return the values adjusted for splits or not. Default is false. + :param bool include_quote_only_bars: If true, also include bars where no trades occurred but quotes did. :param str next_page: Gets the next page of data from a previous API call :return: ApiResponseSecurityIntervalPrices If the method is called asynchronously, @@ -1258,13 +1259,14 @@ def get_security_interval_prices_with_http_info(self, identifier, interval_size, :param str timezone: Returns trading times in this timezone :param int page_size: The number of results to return :param bool split_adjusted: Whether to return the values adjusted for splits or not. Default is false. + :param bool include_quote_only_bars: If true, also include bars where no trades occurred but quotes did. :param str next_page: Gets the next page of data from a previous API call :return: ApiResponseSecurityIntervalPrices If the method is called asynchronously, returns the request thread. """ - all_params = ['identifier', 'interval_size', 'source', 'start_date', 'start_time', 'end_date', 'end_time', 'timezone', 'page_size', 'split_adjusted', 'next_page'] # noqa: E501 + all_params = ['identifier', 'interval_size', 'source', 'start_date', 'start_time', 'end_date', 'end_time', 'timezone', 'page_size', 'split_adjusted', 'include_quote_only_bars', 'next_page'] # noqa: E501 all_params.append('async') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1313,6 +1315,8 @@ def get_security_interval_prices_with_http_info(self, identifier, interval_size, query_params.append(('page_size', params['page_size'])) # noqa: E501 if 'split_adjusted' in params: query_params.append(('split_adjusted', params['split_adjusted'])) # noqa: E501 + if 'include_quote_only_bars' in params: + query_params.append(('include_quote_only_bars', params['include_quote_only_bars'])) # noqa: E501 if 'next_page' in params: query_params.append(('next_page', params['next_page'])) # noqa: E501 @@ -1348,7 +1352,7 @@ def get_security_interval_prices_with_http_info(self, identifier, interval_size, def get_security_intraday_prices(self, identifier, **kwargs): # noqa: E501 """Intraday Stock Prices for Security # noqa: E501 - Return intraday stock prices for the Security with the given `identifier` # noqa: E501 + Deprecated. Return intraday stock prices for the Security with the given `identifier` # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async=True >>> thread = api.get_security_intraday_prices(identifier, _async=True) @@ -1377,7 +1381,7 @@ def get_security_intraday_prices(self, identifier, **kwargs): # noqa: E501 def get_security_intraday_prices_with_http_info(self, identifier, **kwargs): # noqa: E501 """Intraday Stock Prices for Security # noqa: E501 - Return intraday stock prices for the Security with the given `identifier` # noqa: E501 + Deprecated. Return intraday stock prices for the Security with the given `identifier` # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async=True >>> thread = api.get_security_intraday_prices_with_http_info(identifier, _async=True) @@ -5455,6 +5459,7 @@ def get_security_quote(self, identifier, **kwargs): # noqa: E501 :param async bool :param str identifier: A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) (required) :param bool active_only: Whether to return only realtime prices from today. + :param str source: Return the realtime price from the specified source instead of the most recent. :param str next_page: Gets the next page of data from a previous API call :return: ApiResponseSecurityQuote If the method is called asynchronously, @@ -5479,13 +5484,14 @@ def get_security_quote_with_http_info(self, identifier, **kwargs): # noqa: E501 :param async bool :param str identifier: A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) (required) :param bool active_only: Whether to return only realtime prices from today. + :param str source: Return the realtime price from the specified source instead of the most recent. :param str next_page: Gets the next page of data from a previous API call :return: ApiResponseSecurityQuote If the method is called asynchronously, returns the request thread. """ - all_params = ['identifier', 'active_only', 'next_page'] # noqa: E501 + all_params = ['identifier', 'active_only', 'source', 'next_page'] # noqa: E501 all_params.append('async') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -5514,6 +5520,8 @@ def get_security_quote_with_http_info(self, identifier, **kwargs): # noqa: E501 query_params = [] if 'active_only' in params: query_params.append(('active_only', params['active_only'])) # noqa: E501 + if 'source' in params: + query_params.append(('source', params['source'])) # noqa: E501 if 'next_page' in params: query_params.append(('next_page', params['next_page'])) # noqa: E501 diff --git a/intrinio_sdk/api/stock_exchange_api.py b/intrinio_sdk/api/stock_exchange_api.py index b9a7d151..3e8eb0eb 100644 --- a/intrinio_sdk/api/stock_exchange_api.py +++ b/intrinio_sdk/api/stock_exchange_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/api/technical_api.py b/intrinio_sdk/api/technical_api.py index 3c8cc8bb..ae4d3273 100644 --- a/intrinio_sdk/api/technical_api.py +++ b/intrinio_sdk/api/technical_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/api/zacks_api.py b/intrinio_sdk/api/zacks_api.py index 7e9ed57f..f2030bf1 100644 --- a/intrinio_sdk/api/zacks_api.py +++ b/intrinio_sdk/api/zacks_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/api_client.py b/intrinio_sdk/api_client.py index 59203ae7..fb6e1c45 100644 --- a/intrinio_sdk/api_client.py +++ b/intrinio_sdk/api_client.py @@ -4,7 +4,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -76,7 +76,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'Swagger-Codegen/6.29.1/python' + self.user_agent = 'Swagger-Codegen/6.30.0/python' def __del__(self): self.pool.close() diff --git a/intrinio_sdk/configuration.py b/intrinio_sdk/configuration.py index 79e880fd..8400ac3b 100644 --- a/intrinio_sdk/configuration.py +++ b/intrinio_sdk/configuration.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -245,6 +245,6 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 2.64.1\n"\ - "SDK Package Version: 6.29.1".\ + "Version of the API: 2.66.2\n"\ + "SDK Package Version: 6.30.0".\ format(env=sys.platform, pyversion=sys.version) diff --git a/intrinio_sdk/models/__init__.py b/intrinio_sdk/models/__init__.py index 536acd80..650ff4c0 100644 --- a/intrinio_sdk/models/__init__.py +++ b/intrinio_sdk/models/__init__.py @@ -6,7 +6,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/accumulation_distribution_index_technical_value.py b/intrinio_sdk/models/accumulation_distribution_index_technical_value.py index 04a63870..3f5f0d0f 100644 --- a/intrinio_sdk/models/accumulation_distribution_index_technical_value.py +++ b/intrinio_sdk/models/accumulation_distribution_index_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_bulk_download_links.py b/intrinio_sdk/models/api_response_bulk_download_links.py index 99508e32..101d5bd3 100644 --- a/intrinio_sdk/models/api_response_bulk_download_links.py +++ b/intrinio_sdk/models/api_response_bulk_download_links.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_companies.py b/intrinio_sdk/models/api_response_companies.py index 65fb0a40..91aa28b9 100644 --- a/intrinio_sdk/models/api_response_companies.py +++ b/intrinio_sdk/models/api_response_companies.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_companies_search.py b/intrinio_sdk/models/api_response_companies_search.py index 2e25d45e..02ef7f01 100644 --- a/intrinio_sdk/models/api_response_companies_search.py +++ b/intrinio_sdk/models/api_response_companies_search.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_company_answers.py b/intrinio_sdk/models/api_response_company_answers.py index 6fb01078..3e26d340 100644 --- a/intrinio_sdk/models/api_response_company_answers.py +++ b/intrinio_sdk/models/api_response_company_answers.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_company_daily_metrics.py b/intrinio_sdk/models/api_response_company_daily_metrics.py index be731768..2cfe63be 100644 --- a/intrinio_sdk/models/api_response_company_daily_metrics.py +++ b/intrinio_sdk/models/api_response_company_daily_metrics.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_company_filings.py b/intrinio_sdk/models/api_response_company_filings.py index b27535cd..bcc38098 100644 --- a/intrinio_sdk/models/api_response_company_filings.py +++ b/intrinio_sdk/models/api_response_company_filings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_company_fundamentals.py b/intrinio_sdk/models/api_response_company_fundamentals.py index 91425b37..272c706c 100644 --- a/intrinio_sdk/models/api_response_company_fundamentals.py +++ b/intrinio_sdk/models/api_response_company_fundamentals.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_company_historical_data.py b/intrinio_sdk/models/api_response_company_historical_data.py index 5adb54ee..b2da1dfd 100644 --- a/intrinio_sdk/models/api_response_company_historical_data.py +++ b/intrinio_sdk/models/api_response_company_historical_data.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_company_insider_transaction_filings.py b/intrinio_sdk/models/api_response_company_insider_transaction_filings.py index 94480b2c..23c08254 100644 --- a/intrinio_sdk/models/api_response_company_insider_transaction_filings.py +++ b/intrinio_sdk/models/api_response_company_insider_transaction_filings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_company_news.py b/intrinio_sdk/models/api_response_company_news.py index f0fa405c..f21dc8c1 100644 --- a/intrinio_sdk/models/api_response_company_news.py +++ b/intrinio_sdk/models/api_response_company_news.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_company_news_body.py b/intrinio_sdk/models/api_response_company_news_body.py index eb7ec746..6080d113 100644 --- a/intrinio_sdk/models/api_response_company_news_body.py +++ b/intrinio_sdk/models/api_response_company_news_body.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_company_public_float_result.py b/intrinio_sdk/models/api_response_company_public_float_result.py index 935c90e8..83de2c41 100644 --- a/intrinio_sdk/models/api_response_company_public_float_result.py +++ b/intrinio_sdk/models/api_response_company_public_float_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_company_recognize.py b/intrinio_sdk/models/api_response_company_recognize.py index a431c037..8eadde6c 100644 --- a/intrinio_sdk/models/api_response_company_recognize.py +++ b/intrinio_sdk/models/api_response_company_recognize.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_company_securities.py b/intrinio_sdk/models/api_response_company_securities.py index 6bad39a4..0055ffef 100644 --- a/intrinio_sdk/models/api_response_company_securities.py +++ b/intrinio_sdk/models/api_response_company_securities.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_company_shares_outstanding.py b/intrinio_sdk/models/api_response_company_shares_outstanding.py index aad7ed72..f0db9560 100644 --- a/intrinio_sdk/models/api_response_company_shares_outstanding.py +++ b/intrinio_sdk/models/api_response_company_shares_outstanding.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_data_tags.py b/intrinio_sdk/models/api_response_data_tags.py index 5263490b..3e6df3df 100644 --- a/intrinio_sdk/models/api_response_data_tags.py +++ b/intrinio_sdk/models/api_response_data_tags.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_data_tags_search.py b/intrinio_sdk/models/api_response_data_tags_search.py index c0da56e5..02ac45aa 100644 --- a/intrinio_sdk/models/api_response_data_tags_search.py +++ b/intrinio_sdk/models/api_response_data_tags_search.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_economic_index_historical_data.py b/intrinio_sdk/models/api_response_economic_index_historical_data.py index 3e2d7279..247858f6 100644 --- a/intrinio_sdk/models/api_response_economic_index_historical_data.py +++ b/intrinio_sdk/models/api_response_economic_index_historical_data.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_economic_indices.py b/intrinio_sdk/models/api_response_economic_indices.py index e6251103..8e3014d7 100644 --- a/intrinio_sdk/models/api_response_economic_indices.py +++ b/intrinio_sdk/models/api_response_economic_indices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_economic_indices_search.py b/intrinio_sdk/models/api_response_economic_indices_search.py index 89557434..03dee9dc 100644 --- a/intrinio_sdk/models/api_response_economic_indices_search.py +++ b/intrinio_sdk/models/api_response_economic_indices_search.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_eod_index_prices.py b/intrinio_sdk/models/api_response_eod_index_prices.py index c47ac4c5..bd76e64d 100644 --- a/intrinio_sdk/models/api_response_eod_index_prices.py +++ b/intrinio_sdk/models/api_response_eod_index_prices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_eod_index_prices_all.py b/intrinio_sdk/models/api_response_eod_index_prices_all.py index 7d2eba5a..fbde521b 100644 --- a/intrinio_sdk/models/api_response_eod_index_prices_all.py +++ b/intrinio_sdk/models/api_response_eod_index_prices_all.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_esg_companies.py b/intrinio_sdk/models/api_response_esg_companies.py index 98ea5cb0..f1bb7f9b 100644 --- a/intrinio_sdk/models/api_response_esg_companies.py +++ b/intrinio_sdk/models/api_response_esg_companies.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_esg_company_comprehensive_rating_history.py b/intrinio_sdk/models/api_response_esg_company_comprehensive_rating_history.py index 8309d1ab..f6879208 100644 --- a/intrinio_sdk/models/api_response_esg_company_comprehensive_rating_history.py +++ b/intrinio_sdk/models/api_response_esg_company_comprehensive_rating_history.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_esg_company_rating_history.py b/intrinio_sdk/models/api_response_esg_company_rating_history.py index d284eb6d..f9c4af36 100644 --- a/intrinio_sdk/models/api_response_esg_company_rating_history.py +++ b/intrinio_sdk/models/api_response_esg_company_rating_history.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_esg_latest.py b/intrinio_sdk/models/api_response_esg_latest.py index 7427e774..6618fa14 100644 --- a/intrinio_sdk/models/api_response_esg_latest.py +++ b/intrinio_sdk/models/api_response_esg_latest.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_esg_latest_comprehensive.py b/intrinio_sdk/models/api_response_esg_latest_comprehensive.py index 06c39108..f7f6fc2f 100644 --- a/intrinio_sdk/models/api_response_esg_latest_comprehensive.py +++ b/intrinio_sdk/models/api_response_esg_latest_comprehensive.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_et_fs.py b/intrinio_sdk/models/api_response_et_fs.py index 0644a2c2..2f85fa5d 100644 --- a/intrinio_sdk/models/api_response_et_fs.py +++ b/intrinio_sdk/models/api_response_et_fs.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_etf_holdings.py b/intrinio_sdk/models/api_response_etf_holdings.py index 852bf957..ba75cd33 100644 --- a/intrinio_sdk/models/api_response_etf_holdings.py +++ b/intrinio_sdk/models/api_response_etf_holdings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_filing_answers.py b/intrinio_sdk/models/api_response_filing_answers.py index 044e43b3..f42bb73a 100644 --- a/intrinio_sdk/models/api_response_filing_answers.py +++ b/intrinio_sdk/models/api_response_filing_answers.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_filing_fundamentals.py b/intrinio_sdk/models/api_response_filing_fundamentals.py index a64ce61b..b90acb96 100644 --- a/intrinio_sdk/models/api_response_filing_fundamentals.py +++ b/intrinio_sdk/models/api_response_filing_fundamentals.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_filing_notes.py b/intrinio_sdk/models/api_response_filing_notes.py index 9890061d..a6bdc48c 100644 --- a/intrinio_sdk/models/api_response_filing_notes.py +++ b/intrinio_sdk/models/api_response_filing_notes.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_filing_notes_search.py b/intrinio_sdk/models/api_response_filing_notes_search.py index 15cd2477..95e8db6a 100644 --- a/intrinio_sdk/models/api_response_filing_notes_search.py +++ b/intrinio_sdk/models/api_response_filing_notes_search.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_filings.py b/intrinio_sdk/models/api_response_filings.py index 7d60e6ce..d86235b7 100644 --- a/intrinio_sdk/models/api_response_filings.py +++ b/intrinio_sdk/models/api_response_filings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_forex_currencies.py b/intrinio_sdk/models/api_response_forex_currencies.py index 1a165a90..c6c55412 100644 --- a/intrinio_sdk/models/api_response_forex_currencies.py +++ b/intrinio_sdk/models/api_response_forex_currencies.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_forex_pairs.py b/intrinio_sdk/models/api_response_forex_pairs.py index 753ed9d1..24df6061 100644 --- a/intrinio_sdk/models/api_response_forex_pairs.py +++ b/intrinio_sdk/models/api_response_forex_pairs.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_forex_prices.py b/intrinio_sdk/models/api_response_forex_prices.py index 8cb1bbfc..2a4160f9 100644 --- a/intrinio_sdk/models/api_response_forex_prices.py +++ b/intrinio_sdk/models/api_response_forex_prices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_historical_data.py b/intrinio_sdk/models/api_response_historical_data.py index 58d4cfe3..f6c282b6 100644 --- a/intrinio_sdk/models/api_response_historical_data.py +++ b/intrinio_sdk/models/api_response_historical_data.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_index.py b/intrinio_sdk/models/api_response_index.py index ba68b36f..e144293a 100644 --- a/intrinio_sdk/models/api_response_index.py +++ b/intrinio_sdk/models/api_response_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_indices.py b/intrinio_sdk/models/api_response_indices.py index 2ec8aee1..6fecd9f9 100644 --- a/intrinio_sdk/models/api_response_indices.py +++ b/intrinio_sdk/models/api_response_indices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_initial_public_offerings.py b/intrinio_sdk/models/api_response_initial_public_offerings.py index 17395954..a1f53a86 100644 --- a/intrinio_sdk/models/api_response_initial_public_offerings.py +++ b/intrinio_sdk/models/api_response_initial_public_offerings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_insider_transaction_filings.py b/intrinio_sdk/models/api_response_insider_transaction_filings.py index 714259c2..b02dc47b 100644 --- a/intrinio_sdk/models/api_response_insider_transaction_filings.py +++ b/intrinio_sdk/models/api_response_insider_transaction_filings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_municipalities.py b/intrinio_sdk/models/api_response_municipalities.py index f152da67..4d00bdd7 100644 --- a/intrinio_sdk/models/api_response_municipalities.py +++ b/intrinio_sdk/models/api_response_municipalities.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_municipalitiy_financials.py b/intrinio_sdk/models/api_response_municipalitiy_financials.py index 57e72423..be3f1f50 100644 --- a/intrinio_sdk/models/api_response_municipalitiy_financials.py +++ b/intrinio_sdk/models/api_response_municipalitiy_financials.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_news.py b/intrinio_sdk/models/api_response_news.py index ffdcf7d3..12fcce91 100644 --- a/intrinio_sdk/models/api_response_news.py +++ b/intrinio_sdk/models/api_response_news.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_option_prices.py b/intrinio_sdk/models/api_response_option_prices.py index 3d7673bb..c563fc92 100644 --- a/intrinio_sdk/models/api_response_option_prices.py +++ b/intrinio_sdk/models/api_response_option_prices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_options.py b/intrinio_sdk/models/api_response_options.py index 2ec3d737..f6f59823 100644 --- a/intrinio_sdk/models/api_response_options.py +++ b/intrinio_sdk/models/api_response_options.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_options_aggregates.py b/intrinio_sdk/models/api_response_options_aggregates.py index 35c434ef..a98ab7d8 100644 --- a/intrinio_sdk/models/api_response_options_aggregates.py +++ b/intrinio_sdk/models/api_response_options_aggregates.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_options_chain.py b/intrinio_sdk/models/api_response_options_chain.py index 7e16cba4..1ae0aa3f 100644 --- a/intrinio_sdk/models/api_response_options_chain.py +++ b/intrinio_sdk/models/api_response_options_chain.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_options_chain_eod.py b/intrinio_sdk/models/api_response_options_chain_eod.py index d0774823..a1344719 100644 --- a/intrinio_sdk/models/api_response_options_chain_eod.py +++ b/intrinio_sdk/models/api_response_options_chain_eod.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_options_chain_realtime.py b/intrinio_sdk/models/api_response_options_chain_realtime.py index 3fd5ebdb..160703ac 100644 --- a/intrinio_sdk/models/api_response_options_chain_realtime.py +++ b/intrinio_sdk/models/api_response_options_chain_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_options_expirations.py b/intrinio_sdk/models/api_response_options_expirations.py index e15f884f..9a940fbb 100644 --- a/intrinio_sdk/models/api_response_options_expirations.py +++ b/intrinio_sdk/models/api_response_options_expirations.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_options_price_realtime.py b/intrinio_sdk/models/api_response_options_price_realtime.py index 781730d6..24ed41dd 100644 --- a/intrinio_sdk/models/api_response_options_price_realtime.py +++ b/intrinio_sdk/models/api_response_options_price_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_options_prices_batch_realtime.py b/intrinio_sdk/models/api_response_options_prices_batch_realtime.py index 8cc0be4a..47d3ed14 100644 --- a/intrinio_sdk/models/api_response_options_prices_batch_realtime.py +++ b/intrinio_sdk/models/api_response_options_prices_batch_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_options_prices_by_ticker_realtime.py b/intrinio_sdk/models/api_response_options_prices_by_ticker_realtime.py index 71448486..433a88b8 100644 --- a/intrinio_sdk/models/api_response_options_prices_by_ticker_realtime.py +++ b/intrinio_sdk/models/api_response_options_prices_by_ticker_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_options_prices_eod.py b/intrinio_sdk/models/api_response_options_prices_eod.py index 4e449180..0b4ff170 100644 --- a/intrinio_sdk/models/api_response_options_prices_eod.py +++ b/intrinio_sdk/models/api_response_options_prices_eod.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_options_realtime.py b/intrinio_sdk/models/api_response_options_realtime.py index c69d4416..33676be1 100644 --- a/intrinio_sdk/models/api_response_options_realtime.py +++ b/intrinio_sdk/models/api_response_options_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_options_stats_realtime.py b/intrinio_sdk/models/api_response_options_stats_realtime.py index bef60dbf..3040730d 100644 --- a/intrinio_sdk/models/api_response_options_stats_realtime.py +++ b/intrinio_sdk/models/api_response_options_stats_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_options_tickers.py b/intrinio_sdk/models/api_response_options_tickers.py index 4de067b1..d6934e75 100644 --- a/intrinio_sdk/models/api_response_options_tickers.py +++ b/intrinio_sdk/models/api_response_options_tickers.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_options_unusual_activity.py b/intrinio_sdk/models/api_response_options_unusual_activity.py index bf8f25bf..ef1b8d01 100644 --- a/intrinio_sdk/models/api_response_options_unusual_activity.py +++ b/intrinio_sdk/models/api_response_options_unusual_activity.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_owner_insider_transaction_filings.py b/intrinio_sdk/models/api_response_owner_insider_transaction_filings.py index a1c99aa3..b7642a47 100644 --- a/intrinio_sdk/models/api_response_owner_insider_transaction_filings.py +++ b/intrinio_sdk/models/api_response_owner_insider_transaction_filings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_owner_institutional_holdings.py b/intrinio_sdk/models/api_response_owner_institutional_holdings.py index b75468b8..d1965504 100644 --- a/intrinio_sdk/models/api_response_owner_institutional_holdings.py +++ b/intrinio_sdk/models/api_response_owner_institutional_holdings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_owners.py b/intrinio_sdk/models/api_response_owners.py index 512c2253..3ebb8058 100644 --- a/intrinio_sdk/models/api_response_owners.py +++ b/intrinio_sdk/models/api_response_owners.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_realtime_index_prices.py b/intrinio_sdk/models/api_response_realtime_index_prices.py index 99f62a86..79c39771 100644 --- a/intrinio_sdk/models/api_response_realtime_index_prices.py +++ b/intrinio_sdk/models/api_response_realtime_index_prices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_reported_financials.py b/intrinio_sdk/models/api_response_reported_financials.py index bea1b606..29cbe8c6 100644 --- a/intrinio_sdk/models/api_response_reported_financials.py +++ b/intrinio_sdk/models/api_response_reported_financials.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_securities.py b/intrinio_sdk/models/api_response_securities.py index 1742dccc..3b558d78 100644 --- a/intrinio_sdk/models/api_response_securities.py +++ b/intrinio_sdk/models/api_response_securities.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_securities_search.py b/intrinio_sdk/models/api_response_securities_search.py index 16879c69..ae9a19f2 100644 --- a/intrinio_sdk/models/api_response_securities_search.py +++ b/intrinio_sdk/models/api_response_securities_search.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_accumulation_distribution_index.py b/intrinio_sdk/models/api_response_security_accumulation_distribution_index.py index ba110d57..03af05f3 100644 --- a/intrinio_sdk/models/api_response_security_accumulation_distribution_index.py +++ b/intrinio_sdk/models/api_response_security_accumulation_distribution_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_average_daily_trading_volume.py b/intrinio_sdk/models/api_response_security_average_daily_trading_volume.py index a8997717..1b5fec3f 100644 --- a/intrinio_sdk/models/api_response_security_average_daily_trading_volume.py +++ b/intrinio_sdk/models/api_response_security_average_daily_trading_volume.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_average_directional_index.py b/intrinio_sdk/models/api_response_security_average_directional_index.py index e4712f7c..7d8812ab 100644 --- a/intrinio_sdk/models/api_response_security_average_directional_index.py +++ b/intrinio_sdk/models/api_response_security_average_directional_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_average_true_range.py b/intrinio_sdk/models/api_response_security_average_true_range.py index 0cb689d5..037b7070 100644 --- a/intrinio_sdk/models/api_response_security_average_true_range.py +++ b/intrinio_sdk/models/api_response_security_average_true_range.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_awesome_oscillator.py b/intrinio_sdk/models/api_response_security_awesome_oscillator.py index 1bee730c..0d5bd698 100644 --- a/intrinio_sdk/models/api_response_security_awesome_oscillator.py +++ b/intrinio_sdk/models/api_response_security_awesome_oscillator.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_bollinger_bands.py b/intrinio_sdk/models/api_response_security_bollinger_bands.py index 3a6a121f..374018fc 100644 --- a/intrinio_sdk/models/api_response_security_bollinger_bands.py +++ b/intrinio_sdk/models/api_response_security_bollinger_bands.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_chaikin_money_flow.py b/intrinio_sdk/models/api_response_security_chaikin_money_flow.py index f1954cbd..5f57fd3f 100644 --- a/intrinio_sdk/models/api_response_security_chaikin_money_flow.py +++ b/intrinio_sdk/models/api_response_security_chaikin_money_flow.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_commodity_channel_index.py b/intrinio_sdk/models/api_response_security_commodity_channel_index.py index 9a03e3a5..6b6a8d89 100644 --- a/intrinio_sdk/models/api_response_security_commodity_channel_index.py +++ b/intrinio_sdk/models/api_response_security_commodity_channel_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_detrended_price_oscillator.py b/intrinio_sdk/models/api_response_security_detrended_price_oscillator.py index fec736a3..9c21e1b8 100644 --- a/intrinio_sdk/models/api_response_security_detrended_price_oscillator.py +++ b/intrinio_sdk/models/api_response_security_detrended_price_oscillator.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_donchian_channel.py b/intrinio_sdk/models/api_response_security_donchian_channel.py index 238d484b..f5548749 100644 --- a/intrinio_sdk/models/api_response_security_donchian_channel.py +++ b/intrinio_sdk/models/api_response_security_donchian_channel.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_ease_of_movement.py b/intrinio_sdk/models/api_response_security_ease_of_movement.py index 1d4c30dc..ed7696ce 100644 --- a/intrinio_sdk/models/api_response_security_ease_of_movement.py +++ b/intrinio_sdk/models/api_response_security_ease_of_movement.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_force_index.py b/intrinio_sdk/models/api_response_security_force_index.py index d88a3e6b..2740a715 100644 --- a/intrinio_sdk/models/api_response_security_force_index.py +++ b/intrinio_sdk/models/api_response_security_force_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_historical_data.py b/intrinio_sdk/models/api_response_security_historical_data.py index 536dc7e3..3db87069 100644 --- a/intrinio_sdk/models/api_response_security_historical_data.py +++ b/intrinio_sdk/models/api_response_security_historical_data.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_ichimoku_kinko_hyo.py b/intrinio_sdk/models/api_response_security_ichimoku_kinko_hyo.py index a37d709e..12eb1e7b 100644 --- a/intrinio_sdk/models/api_response_security_ichimoku_kinko_hyo.py +++ b/intrinio_sdk/models/api_response_security_ichimoku_kinko_hyo.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_institutional_ownership.py b/intrinio_sdk/models/api_response_security_institutional_ownership.py index e32cf562..6c408f86 100644 --- a/intrinio_sdk/models/api_response_security_institutional_ownership.py +++ b/intrinio_sdk/models/api_response_security_institutional_ownership.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_interval_prices.py b/intrinio_sdk/models/api_response_security_interval_prices.py index d42945b1..a6a28337 100644 --- a/intrinio_sdk/models/api_response_security_interval_prices.py +++ b/intrinio_sdk/models/api_response_security_interval_prices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_intraday_prices.py b/intrinio_sdk/models/api_response_security_intraday_prices.py index e8c7da1e..6705d745 100644 --- a/intrinio_sdk/models/api_response_security_intraday_prices.py +++ b/intrinio_sdk/models/api_response_security_intraday_prices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_keltner_channel.py b/intrinio_sdk/models/api_response_security_keltner_channel.py index 8b4961cf..1ac0fe65 100644 --- a/intrinio_sdk/models/api_response_security_keltner_channel.py +++ b/intrinio_sdk/models/api_response_security_keltner_channel.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_know_sure_thing.py b/intrinio_sdk/models/api_response_security_know_sure_thing.py index 7445ac4b..ea63cd89 100644 --- a/intrinio_sdk/models/api_response_security_know_sure_thing.py +++ b/intrinio_sdk/models/api_response_security_know_sure_thing.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_mass_index.py b/intrinio_sdk/models/api_response_security_mass_index.py index 369c712a..20e4f2c6 100644 --- a/intrinio_sdk/models/api_response_security_mass_index.py +++ b/intrinio_sdk/models/api_response_security_mass_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_money_flow_index.py b/intrinio_sdk/models/api_response_security_money_flow_index.py index 12450aac..dc68e63a 100644 --- a/intrinio_sdk/models/api_response_security_money_flow_index.py +++ b/intrinio_sdk/models/api_response_security_money_flow_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_moving_average_convergence_divergence.py b/intrinio_sdk/models/api_response_security_moving_average_convergence_divergence.py index 7ef77cf0..79f5069e 100644 --- a/intrinio_sdk/models/api_response_security_moving_average_convergence_divergence.py +++ b/intrinio_sdk/models/api_response_security_moving_average_convergence_divergence.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_negative_volume_index.py b/intrinio_sdk/models/api_response_security_negative_volume_index.py index f5371f12..22d9d05c 100644 --- a/intrinio_sdk/models/api_response_security_negative_volume_index.py +++ b/intrinio_sdk/models/api_response_security_negative_volume_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_on_balance_volume.py b/intrinio_sdk/models/api_response_security_on_balance_volume.py index dc11b3e2..fd2ffa18 100644 --- a/intrinio_sdk/models/api_response_security_on_balance_volume.py +++ b/intrinio_sdk/models/api_response_security_on_balance_volume.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_on_balance_volume_mean.py b/intrinio_sdk/models/api_response_security_on_balance_volume_mean.py index d18f8d2a..e8036327 100644 --- a/intrinio_sdk/models/api_response_security_on_balance_volume_mean.py +++ b/intrinio_sdk/models/api_response_security_on_balance_volume_mean.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_quote.py b/intrinio_sdk/models/api_response_security_quote.py index f00e2431..c4815158 100644 --- a/intrinio_sdk/models/api_response_security_quote.py +++ b/intrinio_sdk/models/api_response_security_quote.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_relative_strength_index.py b/intrinio_sdk/models/api_response_security_relative_strength_index.py index 76824ce5..9e401b0c 100644 --- a/intrinio_sdk/models/api_response_security_relative_strength_index.py +++ b/intrinio_sdk/models/api_response_security_relative_strength_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_simple_moving_average.py b/intrinio_sdk/models/api_response_security_simple_moving_average.py index 6eea9e1e..dcef1588 100644 --- a/intrinio_sdk/models/api_response_security_simple_moving_average.py +++ b/intrinio_sdk/models/api_response_security_simple_moving_average.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_stochastic_oscillator.py b/intrinio_sdk/models/api_response_security_stochastic_oscillator.py index 5d1d275e..4c29298a 100644 --- a/intrinio_sdk/models/api_response_security_stochastic_oscillator.py +++ b/intrinio_sdk/models/api_response_security_stochastic_oscillator.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_stock_price_adjustments.py b/intrinio_sdk/models/api_response_security_stock_price_adjustments.py index 407187ad..f8b65877 100644 --- a/intrinio_sdk/models/api_response_security_stock_price_adjustments.py +++ b/intrinio_sdk/models/api_response_security_stock_price_adjustments.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_stock_prices.py b/intrinio_sdk/models/api_response_security_stock_prices.py index d9430cad..b68a773f 100644 --- a/intrinio_sdk/models/api_response_security_stock_prices.py +++ b/intrinio_sdk/models/api_response_security_stock_prices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_triple_exponential_average.py b/intrinio_sdk/models/api_response_security_triple_exponential_average.py index ff369d66..d24f1dab 100644 --- a/intrinio_sdk/models/api_response_security_triple_exponential_average.py +++ b/intrinio_sdk/models/api_response_security_triple_exponential_average.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_true_strength_index.py b/intrinio_sdk/models/api_response_security_true_strength_index.py index 7b5aeb23..56251257 100644 --- a/intrinio_sdk/models/api_response_security_true_strength_index.py +++ b/intrinio_sdk/models/api_response_security_true_strength_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_ultimate_oscillator.py b/intrinio_sdk/models/api_response_security_ultimate_oscillator.py index a5867e0f..f2fa402a 100644 --- a/intrinio_sdk/models/api_response_security_ultimate_oscillator.py +++ b/intrinio_sdk/models/api_response_security_ultimate_oscillator.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_volume_price_trend.py b/intrinio_sdk/models/api_response_security_volume_price_trend.py index 7f90db00..2abde696 100644 --- a/intrinio_sdk/models/api_response_security_volume_price_trend.py +++ b/intrinio_sdk/models/api_response_security_volume_price_trend.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_volume_weighted_average_price.py b/intrinio_sdk/models/api_response_security_volume_weighted_average_price.py index d5cf4759..3efe392b 100644 --- a/intrinio_sdk/models/api_response_security_volume_weighted_average_price.py +++ b/intrinio_sdk/models/api_response_security_volume_weighted_average_price.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_vortex_indicator.py b/intrinio_sdk/models/api_response_security_vortex_indicator.py index e9823943..6c77fe16 100644 --- a/intrinio_sdk/models/api_response_security_vortex_indicator.py +++ b/intrinio_sdk/models/api_response_security_vortex_indicator.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_williams_r.py b/intrinio_sdk/models/api_response_security_williams_r.py index 70a6b1d0..629c79c6 100644 --- a/intrinio_sdk/models/api_response_security_williams_r.py +++ b/intrinio_sdk/models/api_response_security_williams_r.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_zacks_analyst_ratings.py b/intrinio_sdk/models/api_response_security_zacks_analyst_ratings.py index b1d3ce18..d611f3a8 100644 --- a/intrinio_sdk/models/api_response_security_zacks_analyst_ratings.py +++ b/intrinio_sdk/models/api_response_security_zacks_analyst_ratings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_zacks_analyst_ratings_snapshot.py b/intrinio_sdk/models/api_response_security_zacks_analyst_ratings_snapshot.py index c7d52521..bfdcf5eb 100644 --- a/intrinio_sdk/models/api_response_security_zacks_analyst_ratings_snapshot.py +++ b/intrinio_sdk/models/api_response_security_zacks_analyst_ratings_snapshot.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_zacks_eps_surprises.py b/intrinio_sdk/models/api_response_security_zacks_eps_surprises.py index 1f86d4a8..29a922cc 100644 --- a/intrinio_sdk/models/api_response_security_zacks_eps_surprises.py +++ b/intrinio_sdk/models/api_response_security_zacks_eps_surprises.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_security_zacks_sales_surprises.py b/intrinio_sdk/models/api_response_security_zacks_sales_surprises.py index 4d50785c..5c518e83 100644 --- a/intrinio_sdk/models/api_response_security_zacks_sales_surprises.py +++ b/intrinio_sdk/models/api_response_security_zacks_sales_surprises.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_sic_index_historical_data.py b/intrinio_sdk/models/api_response_sic_index_historical_data.py index 5bc1488a..b966c2ef 100644 --- a/intrinio_sdk/models/api_response_sic_index_historical_data.py +++ b/intrinio_sdk/models/api_response_sic_index_historical_data.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_sic_indices.py b/intrinio_sdk/models/api_response_sic_indices.py index 64f233de..22914ee9 100644 --- a/intrinio_sdk/models/api_response_sic_indices.py +++ b/intrinio_sdk/models/api_response_sic_indices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_sic_indices_search.py b/intrinio_sdk/models/api_response_sic_indices_search.py index 59b7ed2d..7d001259 100644 --- a/intrinio_sdk/models/api_response_sic_indices_search.py +++ b/intrinio_sdk/models/api_response_sic_indices_search.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_standardized_financials.py b/intrinio_sdk/models/api_response_standardized_financials.py index 4e7c7e0c..4dfbe60f 100644 --- a/intrinio_sdk/models/api_response_standardized_financials.py +++ b/intrinio_sdk/models/api_response_standardized_financials.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_standardized_financials_dimensions.py b/intrinio_sdk/models/api_response_standardized_financials_dimensions.py index 675dda90..43ffc054 100644 --- a/intrinio_sdk/models/api_response_standardized_financials_dimensions.py +++ b/intrinio_sdk/models/api_response_standardized_financials_dimensions.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_stock_exchange_realtime_stock_prices.py b/intrinio_sdk/models/api_response_stock_exchange_realtime_stock_prices.py index 95022dd3..2a3a7383 100644 --- a/intrinio_sdk/models/api_response_stock_exchange_realtime_stock_prices.py +++ b/intrinio_sdk/models/api_response_stock_exchange_realtime_stock_prices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_stock_exchange_securities.py b/intrinio_sdk/models/api_response_stock_exchange_securities.py index 43d73a37..01aec855 100644 --- a/intrinio_sdk/models/api_response_stock_exchange_securities.py +++ b/intrinio_sdk/models/api_response_stock_exchange_securities.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_stock_exchange_stock_price_adjustments.py b/intrinio_sdk/models/api_response_stock_exchange_stock_price_adjustments.py index 5bf35b89..af7c1432 100644 --- a/intrinio_sdk/models/api_response_stock_exchange_stock_price_adjustments.py +++ b/intrinio_sdk/models/api_response_stock_exchange_stock_price_adjustments.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_stock_exchange_stock_prices.py b/intrinio_sdk/models/api_response_stock_exchange_stock_prices.py index 7f60bce3..1004de44 100644 --- a/intrinio_sdk/models/api_response_stock_exchange_stock_prices.py +++ b/intrinio_sdk/models/api_response_stock_exchange_stock_prices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_stock_exchanges.py b/intrinio_sdk/models/api_response_stock_exchanges.py index 4a2ef6ce..6be22b4f 100644 --- a/intrinio_sdk/models/api_response_stock_exchanges.py +++ b/intrinio_sdk/models/api_response_stock_exchanges.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_stock_market_index_historical_data.py b/intrinio_sdk/models/api_response_stock_market_index_historical_data.py index 5c1d66ef..d4b1dae7 100644 --- a/intrinio_sdk/models/api_response_stock_market_index_historical_data.py +++ b/intrinio_sdk/models/api_response_stock_market_index_historical_data.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_stock_market_indices.py b/intrinio_sdk/models/api_response_stock_market_indices.py index 2cfef7b6..08b73384 100644 --- a/intrinio_sdk/models/api_response_stock_market_indices.py +++ b/intrinio_sdk/models/api_response_stock_market_indices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_stock_market_indices_search.py b/intrinio_sdk/models/api_response_stock_market_indices_search.py index 241c027f..f65db23a 100644 --- a/intrinio_sdk/models/api_response_stock_market_indices_search.py +++ b/intrinio_sdk/models/api_response_stock_market_indices_search.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_zacks_analyst_ratings.py b/intrinio_sdk/models/api_response_zacks_analyst_ratings.py index e275466d..dd1ce186 100644 --- a/intrinio_sdk/models/api_response_zacks_analyst_ratings.py +++ b/intrinio_sdk/models/api_response_zacks_analyst_ratings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_zacks_ebitda_consensus.py b/intrinio_sdk/models/api_response_zacks_ebitda_consensus.py index 307ffb19..2e9d20c3 100644 --- a/intrinio_sdk/models/api_response_zacks_ebitda_consensus.py +++ b/intrinio_sdk/models/api_response_zacks_ebitda_consensus.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_zacks_eps_estimates.py b/intrinio_sdk/models/api_response_zacks_eps_estimates.py index e9ffadb3..6a125cd5 100644 --- a/intrinio_sdk/models/api_response_zacks_eps_estimates.py +++ b/intrinio_sdk/models/api_response_zacks_eps_estimates.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_zacks_eps_growth_rates.py b/intrinio_sdk/models/api_response_zacks_eps_growth_rates.py index a9ef028e..90bff9af 100644 --- a/intrinio_sdk/models/api_response_zacks_eps_growth_rates.py +++ b/intrinio_sdk/models/api_response_zacks_eps_growth_rates.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_zacks_eps_surprises.py b/intrinio_sdk/models/api_response_zacks_eps_surprises.py index d672229b..54b6503a 100644 --- a/intrinio_sdk/models/api_response_zacks_eps_surprises.py +++ b/intrinio_sdk/models/api_response_zacks_eps_surprises.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_zacks_etf_holdings.py b/intrinio_sdk/models/api_response_zacks_etf_holdings.py index 15898100..68f20f25 100644 --- a/intrinio_sdk/models/api_response_zacks_etf_holdings.py +++ b/intrinio_sdk/models/api_response_zacks_etf_holdings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_zacks_forward_p_es.py b/intrinio_sdk/models/api_response_zacks_forward_p_es.py index 421d43e8..2a71d2f6 100644 --- a/intrinio_sdk/models/api_response_zacks_forward_p_es.py +++ b/intrinio_sdk/models/api_response_zacks_forward_p_es.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_zacks_institutional_holding_companies.py b/intrinio_sdk/models/api_response_zacks_institutional_holding_companies.py index 4515faac..18c9328c 100644 --- a/intrinio_sdk/models/api_response_zacks_institutional_holding_companies.py +++ b/intrinio_sdk/models/api_response_zacks_institutional_holding_companies.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_zacks_institutional_holding_owners.py b/intrinio_sdk/models/api_response_zacks_institutional_holding_owners.py index cb251aba..63b24a12 100644 --- a/intrinio_sdk/models/api_response_zacks_institutional_holding_owners.py +++ b/intrinio_sdk/models/api_response_zacks_institutional_holding_owners.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_zacks_institutional_holdings.py b/intrinio_sdk/models/api_response_zacks_institutional_holdings.py index b63ceed4..7f150435 100644 --- a/intrinio_sdk/models/api_response_zacks_institutional_holdings.py +++ b/intrinio_sdk/models/api_response_zacks_institutional_holdings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_zacks_long_term_growth_rates.py b/intrinio_sdk/models/api_response_zacks_long_term_growth_rates.py index 099135d7..5f95b5a7 100644 --- a/intrinio_sdk/models/api_response_zacks_long_term_growth_rates.py +++ b/intrinio_sdk/models/api_response_zacks_long_term_growth_rates.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_zacks_sales_estimates.py b/intrinio_sdk/models/api_response_zacks_sales_estimates.py index cdd9550e..7ccd7714 100644 --- a/intrinio_sdk/models/api_response_zacks_sales_estimates.py +++ b/intrinio_sdk/models/api_response_zacks_sales_estimates.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_zacks_sales_surprises.py b/intrinio_sdk/models/api_response_zacks_sales_surprises.py index a80527e9..0efa470d 100644 --- a/intrinio_sdk/models/api_response_zacks_sales_surprises.py +++ b/intrinio_sdk/models/api_response_zacks_sales_surprises.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/api_response_zacks_target_price_consensuses.py b/intrinio_sdk/models/api_response_zacks_target_price_consensuses.py index 6bd80b71..6ffa8c60 100644 --- a/intrinio_sdk/models/api_response_zacks_target_price_consensuses.py +++ b/intrinio_sdk/models/api_response_zacks_target_price_consensuses.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/average_daily_trading_volume_technical_value.py b/intrinio_sdk/models/average_daily_trading_volume_technical_value.py index 8d6b8feb..a93cdb89 100644 --- a/intrinio_sdk/models/average_daily_trading_volume_technical_value.py +++ b/intrinio_sdk/models/average_daily_trading_volume_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/average_directional_index_technical_value.py b/intrinio_sdk/models/average_directional_index_technical_value.py index 2f6bca3d..54cacb86 100644 --- a/intrinio_sdk/models/average_directional_index_technical_value.py +++ b/intrinio_sdk/models/average_directional_index_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/average_true_range_technical_value.py b/intrinio_sdk/models/average_true_range_technical_value.py index ce03a552..f098ae7a 100644 --- a/intrinio_sdk/models/average_true_range_technical_value.py +++ b/intrinio_sdk/models/average_true_range_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/awesome_oscillator_technical_value.py b/intrinio_sdk/models/awesome_oscillator_technical_value.py index a6a43811..4365c785 100644 --- a/intrinio_sdk/models/awesome_oscillator_technical_value.py +++ b/intrinio_sdk/models/awesome_oscillator_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/bollinger_bands_technical_value.py b/intrinio_sdk/models/bollinger_bands_technical_value.py index 3ed5348b..c3d4cfa5 100644 --- a/intrinio_sdk/models/bollinger_bands_technical_value.py +++ b/intrinio_sdk/models/bollinger_bands_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/bulk_download_links.py b/intrinio_sdk/models/bulk_download_links.py index 9bd39a89..3e59881a 100644 --- a/intrinio_sdk/models/bulk_download_links.py +++ b/intrinio_sdk/models/bulk_download_links.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/bulk_download_summary.py b/intrinio_sdk/models/bulk_download_summary.py index 8a450ba0..ed22b80b 100644 --- a/intrinio_sdk/models/bulk_download_summary.py +++ b/intrinio_sdk/models/bulk_download_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/chaikin_money_flow_technical_value.py b/intrinio_sdk/models/chaikin_money_flow_technical_value.py index c3b38e69..9afda814 100644 --- a/intrinio_sdk/models/chaikin_money_flow_technical_value.py +++ b/intrinio_sdk/models/chaikin_money_flow_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/commodity_channel_index_technical_value.py b/intrinio_sdk/models/commodity_channel_index_technical_value.py index 88685190..567101e0 100644 --- a/intrinio_sdk/models/commodity_channel_index_technical_value.py +++ b/intrinio_sdk/models/commodity_channel_index_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/company.py b/intrinio_sdk/models/company.py index f6c8879a..5961d6fe 100644 --- a/intrinio_sdk/models/company.py +++ b/intrinio_sdk/models/company.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/company_daily_metric.py b/intrinio_sdk/models/company_daily_metric.py index 2514b92d..f3eb7c17 100644 --- a/intrinio_sdk/models/company_daily_metric.py +++ b/intrinio_sdk/models/company_daily_metric.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/company_filing.py b/intrinio_sdk/models/company_filing.py index 532626f7..a8428b74 100644 --- a/intrinio_sdk/models/company_filing.py +++ b/intrinio_sdk/models/company_filing.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/company_initial_public_offering.py b/intrinio_sdk/models/company_initial_public_offering.py index 56514272..f0759ccb 100644 --- a/intrinio_sdk/models/company_initial_public_offering.py +++ b/intrinio_sdk/models/company_initial_public_offering.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/company_news.py b/intrinio_sdk/models/company_news.py index e656890d..643805e5 100644 --- a/intrinio_sdk/models/company_news.py +++ b/intrinio_sdk/models/company_news.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/company_news_summary.py b/intrinio_sdk/models/company_news_summary.py index c329f4ff..a8bb9169 100644 --- a/intrinio_sdk/models/company_news_summary.py +++ b/intrinio_sdk/models/company_news_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/company_public_float.py b/intrinio_sdk/models/company_public_float.py index 6a79c1ac..0b3c1922 100644 --- a/intrinio_sdk/models/company_public_float.py +++ b/intrinio_sdk/models/company_public_float.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/company_shares_outstanding.py b/intrinio_sdk/models/company_shares_outstanding.py index f3579b22..6a89e574 100644 --- a/intrinio_sdk/models/company_shares_outstanding.py +++ b/intrinio_sdk/models/company_shares_outstanding.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/company_summary.py b/intrinio_sdk/models/company_summary.py index f0d96497..6aad8613 100644 --- a/intrinio_sdk/models/company_summary.py +++ b/intrinio_sdk/models/company_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/data_tag.py b/intrinio_sdk/models/data_tag.py index 69dbe7db..995e74a9 100644 --- a/intrinio_sdk/models/data_tag.py +++ b/intrinio_sdk/models/data_tag.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/data_tag_summary.py b/intrinio_sdk/models/data_tag_summary.py index b67adc60..93348990 100644 --- a/intrinio_sdk/models/data_tag_summary.py +++ b/intrinio_sdk/models/data_tag_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/detrended_price_oscillator_technical_value.py b/intrinio_sdk/models/detrended_price_oscillator_technical_value.py index 6a9d57cc..5c4d16fb 100644 --- a/intrinio_sdk/models/detrended_price_oscillator_technical_value.py +++ b/intrinio_sdk/models/detrended_price_oscillator_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/dividend_record.py b/intrinio_sdk/models/dividend_record.py index 0475dde7..3c510e45 100644 --- a/intrinio_sdk/models/dividend_record.py +++ b/intrinio_sdk/models/dividend_record.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/donchian_channel_technical_value.py b/intrinio_sdk/models/donchian_channel_technical_value.py index e0bac19a..2eb0186b 100644 --- a/intrinio_sdk/models/donchian_channel_technical_value.py +++ b/intrinio_sdk/models/donchian_channel_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/earnings_record.py b/intrinio_sdk/models/earnings_record.py index 8df854d2..319acbfe 100644 --- a/intrinio_sdk/models/earnings_record.py +++ b/intrinio_sdk/models/earnings_record.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/ease_of_movement_technical_value.py b/intrinio_sdk/models/ease_of_movement_technical_value.py index f881dcc5..6168c8f2 100644 --- a/intrinio_sdk/models/ease_of_movement_technical_value.py +++ b/intrinio_sdk/models/ease_of_movement_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/economic_index.py b/intrinio_sdk/models/economic_index.py index d8824369..f409c2fc 100644 --- a/intrinio_sdk/models/economic_index.py +++ b/intrinio_sdk/models/economic_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/economic_index_summary.py b/intrinio_sdk/models/economic_index_summary.py index 21a139d6..291dcd68 100644 --- a/intrinio_sdk/models/economic_index_summary.py +++ b/intrinio_sdk/models/economic_index_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/eod_index_price.py b/intrinio_sdk/models/eod_index_price.py index 9817b8e7..825b4884 100644 --- a/intrinio_sdk/models/eod_index_price.py +++ b/intrinio_sdk/models/eod_index_price.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/eod_index_price_summary.py b/intrinio_sdk/models/eod_index_price_summary.py index ee1953e4..8b0e27e6 100644 --- a/intrinio_sdk/models/eod_index_price_summary.py +++ b/intrinio_sdk/models/eod_index_price_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/esg_company_summary.py b/intrinio_sdk/models/esg_company_summary.py index cf4fbb4a..06f7bc9b 100644 --- a/intrinio_sdk/models/esg_company_summary.py +++ b/intrinio_sdk/models/esg_company_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/esg_comprehensive_rating.py b/intrinio_sdk/models/esg_comprehensive_rating.py index 6db9db56..b08c62be 100644 --- a/intrinio_sdk/models/esg_comprehensive_rating.py +++ b/intrinio_sdk/models/esg_comprehensive_rating.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/esg_comprehensive_rating_with_company.py b/intrinio_sdk/models/esg_comprehensive_rating_with_company.py index 1ea1d7fe..a49be596 100644 --- a/intrinio_sdk/models/esg_comprehensive_rating_with_company.py +++ b/intrinio_sdk/models/esg_comprehensive_rating_with_company.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/esg_rating.py b/intrinio_sdk/models/esg_rating.py index f88b0860..baea765a 100644 --- a/intrinio_sdk/models/esg_rating.py +++ b/intrinio_sdk/models/esg_rating.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/esg_rating_with_company.py b/intrinio_sdk/models/esg_rating_with_company.py index 67dd73f6..3fa63b98 100644 --- a/intrinio_sdk/models/esg_rating_with_company.py +++ b/intrinio_sdk/models/esg_rating_with_company.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/etf.py b/intrinio_sdk/models/etf.py index 50b994a6..78bca6c2 100644 --- a/intrinio_sdk/models/etf.py +++ b/intrinio_sdk/models/etf.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/etf_analytics.py b/intrinio_sdk/models/etf_analytics.py index 9d0153f0..9eb94e86 100644 --- a/intrinio_sdk/models/etf_analytics.py +++ b/intrinio_sdk/models/etf_analytics.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/etf_holding.py b/intrinio_sdk/models/etf_holding.py index b157fc6d..6a153250 100644 --- a/intrinio_sdk/models/etf_holding.py +++ b/intrinio_sdk/models/etf_holding.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/etf_stats.py b/intrinio_sdk/models/etf_stats.py index e8e25e38..f626a7ab 100644 --- a/intrinio_sdk/models/etf_stats.py +++ b/intrinio_sdk/models/etf_stats.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/etf_summary.py b/intrinio_sdk/models/etf_summary.py index 9874d6a0..c9c1e988 100644 --- a/intrinio_sdk/models/etf_summary.py +++ b/intrinio_sdk/models/etf_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/filing.py b/intrinio_sdk/models/filing.py index 7c80e1d6..e0bc6281 100644 --- a/intrinio_sdk/models/filing.py +++ b/intrinio_sdk/models/filing.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/filing_note.py b/intrinio_sdk/models/filing_note.py index 4265a7ab..0f7398d0 100644 --- a/intrinio_sdk/models/filing_note.py +++ b/intrinio_sdk/models/filing_note.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/filing_note_filing.py b/intrinio_sdk/models/filing_note_filing.py index 34393a85..e0bed09a 100644 --- a/intrinio_sdk/models/filing_note_filing.py +++ b/intrinio_sdk/models/filing_note_filing.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/filing_note_summary.py b/intrinio_sdk/models/filing_note_summary.py index caa8e3ce..7e985c09 100644 --- a/intrinio_sdk/models/filing_note_summary.py +++ b/intrinio_sdk/models/filing_note_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/filing_summary.py b/intrinio_sdk/models/filing_summary.py index 570703ce..6aecb983 100644 --- a/intrinio_sdk/models/filing_summary.py +++ b/intrinio_sdk/models/filing_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/force_index_technical_value.py b/intrinio_sdk/models/force_index_technical_value.py index cc0617b7..83dbc676 100644 --- a/intrinio_sdk/models/force_index_technical_value.py +++ b/intrinio_sdk/models/force_index_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/forex_currency.py b/intrinio_sdk/models/forex_currency.py index 5c4f1943..ef4ad367 100644 --- a/intrinio_sdk/models/forex_currency.py +++ b/intrinio_sdk/models/forex_currency.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/forex_pair.py b/intrinio_sdk/models/forex_pair.py index 364af3b9..97e1aad8 100644 --- a/intrinio_sdk/models/forex_pair.py +++ b/intrinio_sdk/models/forex_pair.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/forex_price.py b/intrinio_sdk/models/forex_price.py index 56934df3..13b62dc2 100644 --- a/intrinio_sdk/models/forex_price.py +++ b/intrinio_sdk/models/forex_price.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/fundamental.py b/intrinio_sdk/models/fundamental.py index 9c2b5ce8..3168cc37 100644 --- a/intrinio_sdk/models/fundamental.py +++ b/intrinio_sdk/models/fundamental.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/fundamental_summary.py b/intrinio_sdk/models/fundamental_summary.py index d1eac8ab..6778f490 100644 --- a/intrinio_sdk/models/fundamental_summary.py +++ b/intrinio_sdk/models/fundamental_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/historical_data.py b/intrinio_sdk/models/historical_data.py index 8093f2c6..0d8fc5cf 100644 --- a/intrinio_sdk/models/historical_data.py +++ b/intrinio_sdk/models/historical_data.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/ichimoku_kinko_hyo_technical_value.py b/intrinio_sdk/models/ichimoku_kinko_hyo_technical_value.py index 1803c61f..053a7769 100644 --- a/intrinio_sdk/models/ichimoku_kinko_hyo_technical_value.py +++ b/intrinio_sdk/models/ichimoku_kinko_hyo_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/insider_transaction.py b/intrinio_sdk/models/insider_transaction.py index 177049a4..49f0c04f 100644 --- a/intrinio_sdk/models/insider_transaction.py +++ b/intrinio_sdk/models/insider_transaction.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/insider_transaction_filing.py b/intrinio_sdk/models/insider_transaction_filing.py index 72a873cf..5ff36764 100644 --- a/intrinio_sdk/models/insider_transaction_filing.py +++ b/intrinio_sdk/models/insider_transaction_filing.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/institutional_holding.py b/intrinio_sdk/models/institutional_holding.py index 0a1c4d10..ef6c0367 100644 --- a/intrinio_sdk/models/institutional_holding.py +++ b/intrinio_sdk/models/institutional_holding.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/institutional_ownership.py b/intrinio_sdk/models/institutional_ownership.py index 63ae1905..49eb699f 100644 --- a/intrinio_sdk/models/institutional_ownership.py +++ b/intrinio_sdk/models/institutional_ownership.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/intraday_stock_price.py b/intrinio_sdk/models/intraday_stock_price.py index a35ad1ec..8c8730b8 100644 --- a/intrinio_sdk/models/intraday_stock_price.py +++ b/intrinio_sdk/models/intraday_stock_price.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/keltner_channel_technical_value.py b/intrinio_sdk/models/keltner_channel_technical_value.py index 9866dc56..bcf88d91 100644 --- a/intrinio_sdk/models/keltner_channel_technical_value.py +++ b/intrinio_sdk/models/keltner_channel_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/know_sure_thing_technical_value.py b/intrinio_sdk/models/know_sure_thing_technical_value.py index 6d0204e3..f8093613 100644 --- a/intrinio_sdk/models/know_sure_thing_technical_value.py +++ b/intrinio_sdk/models/know_sure_thing_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/market_status_result.py b/intrinio_sdk/models/market_status_result.py index 167664e8..bc175e7d 100644 --- a/intrinio_sdk/models/market_status_result.py +++ b/intrinio_sdk/models/market_status_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/mass_index_technical_value.py b/intrinio_sdk/models/mass_index_technical_value.py index 5ac6dd3a..edd4a530 100644 --- a/intrinio_sdk/models/mass_index_technical_value.py +++ b/intrinio_sdk/models/mass_index_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/money_flow_index_technical_value.py b/intrinio_sdk/models/money_flow_index_technical_value.py index 1ef3a082..878d9412 100644 --- a/intrinio_sdk/models/money_flow_index_technical_value.py +++ b/intrinio_sdk/models/money_flow_index_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/moving_average_convergence_divergence_technical_value.py b/intrinio_sdk/models/moving_average_convergence_divergence_technical_value.py index 953e34b0..bc439179 100644 --- a/intrinio_sdk/models/moving_average_convergence_divergence_technical_value.py +++ b/intrinio_sdk/models/moving_average_convergence_divergence_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/municipality.py b/intrinio_sdk/models/municipality.py index bef4aa8a..713306c3 100644 --- a/intrinio_sdk/models/municipality.py +++ b/intrinio_sdk/models/municipality.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/municipality_financial.py b/intrinio_sdk/models/municipality_financial.py index 5081ee78..e4fe56fc 100644 --- a/intrinio_sdk/models/municipality_financial.py +++ b/intrinio_sdk/models/municipality_financial.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/negative_volume_index_technical_value.py b/intrinio_sdk/models/negative_volume_index_technical_value.py index 46932e8e..153d1c8b 100644 --- a/intrinio_sdk/models/negative_volume_index_technical_value.py +++ b/intrinio_sdk/models/negative_volume_index_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/news_topic.py b/intrinio_sdk/models/news_topic.py index b19fa2f4..5b1aa6bc 100644 --- a/intrinio_sdk/models/news_topic.py +++ b/intrinio_sdk/models/news_topic.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/on_balance_volume_mean_technical_value.py b/intrinio_sdk/models/on_balance_volume_mean_technical_value.py index 6c844578..fbd66057 100644 --- a/intrinio_sdk/models/on_balance_volume_mean_technical_value.py +++ b/intrinio_sdk/models/on_balance_volume_mean_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/on_balance_volume_technical_value.py b/intrinio_sdk/models/on_balance_volume_technical_value.py index c38190f7..dd377878 100644 --- a/intrinio_sdk/models/on_balance_volume_technical_value.py +++ b/intrinio_sdk/models/on_balance_volume_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/option.py b/intrinio_sdk/models/option.py index bd6ebf31..7ce4a1e2 100644 --- a/intrinio_sdk/models/option.py +++ b/intrinio_sdk/models/option.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/option_chain.py b/intrinio_sdk/models/option_chain.py index ff485b41..8a5425b4 100644 --- a/intrinio_sdk/models/option_chain.py +++ b/intrinio_sdk/models/option_chain.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/option_chain_eod.py b/intrinio_sdk/models/option_chain_eod.py index a5e430d5..dcb21d32 100644 --- a/intrinio_sdk/models/option_chain_eod.py +++ b/intrinio_sdk/models/option_chain_eod.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/option_chain_realtime.py b/intrinio_sdk/models/option_chain_realtime.py index d50d89f3..0c36251f 100644 --- a/intrinio_sdk/models/option_chain_realtime.py +++ b/intrinio_sdk/models/option_chain_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/option_contracts_list.py b/intrinio_sdk/models/option_contracts_list.py index c4f02a2c..7fd491cc 100644 --- a/intrinio_sdk/models/option_contracts_list.py +++ b/intrinio_sdk/models/option_contracts_list.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/option_eod.py b/intrinio_sdk/models/option_eod.py index 0f2221bf..b58429cb 100644 --- a/intrinio_sdk/models/option_eod.py +++ b/intrinio_sdk/models/option_eod.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/option_factors_realtime.py b/intrinio_sdk/models/option_factors_realtime.py index ad5e77bc..a5005ba8 100644 --- a/intrinio_sdk/models/option_factors_realtime.py +++ b/intrinio_sdk/models/option_factors_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/option_interval.py b/intrinio_sdk/models/option_interval.py index fe278be7..1ebfeab7 100644 --- a/intrinio_sdk/models/option_interval.py +++ b/intrinio_sdk/models/option_interval.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/option_interval_mover.py b/intrinio_sdk/models/option_interval_mover.py index a05e3f79..cba5416f 100644 --- a/intrinio_sdk/models/option_interval_mover.py +++ b/intrinio_sdk/models/option_interval_mover.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/option_intervals_movers_result.py b/intrinio_sdk/models/option_intervals_movers_result.py index df9a5c66..532461d6 100644 --- a/intrinio_sdk/models/option_intervals_movers_result.py +++ b/intrinio_sdk/models/option_intervals_movers_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/option_intervals_result.py b/intrinio_sdk/models/option_intervals_result.py index a92e9306..d86ae9e8 100644 --- a/intrinio_sdk/models/option_intervals_result.py +++ b/intrinio_sdk/models/option_intervals_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/option_price.py b/intrinio_sdk/models/option_price.py index e06c4e27..9ed1e8de 100644 --- a/intrinio_sdk/models/option_price.py +++ b/intrinio_sdk/models/option_price.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/option_price_batch_realtime.py b/intrinio_sdk/models/option_price_batch_realtime.py index bf32f091..3b6b17ff 100644 --- a/intrinio_sdk/models/option_price_batch_realtime.py +++ b/intrinio_sdk/models/option_price_batch_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/option_price_eod.py b/intrinio_sdk/models/option_price_eod.py index 9387e943..6ce4a2d8 100644 --- a/intrinio_sdk/models/option_price_eod.py +++ b/intrinio_sdk/models/option_price_eod.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/option_price_realtime.py b/intrinio_sdk/models/option_price_realtime.py index 63cb2bc0..cf08b31e 100644 --- a/intrinio_sdk/models/option_price_realtime.py +++ b/intrinio_sdk/models/option_price_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/option_price_realtime_extended.py b/intrinio_sdk/models/option_price_realtime_extended.py index 35ab207e..2a3852a9 100644 --- a/intrinio_sdk/models/option_price_realtime_extended.py +++ b/intrinio_sdk/models/option_price_realtime_extended.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/option_realtime.py b/intrinio_sdk/models/option_realtime.py index 0e06769d..ab54f039 100644 --- a/intrinio_sdk/models/option_realtime.py +++ b/intrinio_sdk/models/option_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/option_snapshot_group.py b/intrinio_sdk/models/option_snapshot_group.py index d5125f5e..62b71f42 100644 --- a/intrinio_sdk/models/option_snapshot_group.py +++ b/intrinio_sdk/models/option_snapshot_group.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/option_snapshots_result.py b/intrinio_sdk/models/option_snapshots_result.py index 8cb84018..6d12d835 100644 --- a/intrinio_sdk/models/option_snapshots_result.py +++ b/intrinio_sdk/models/option_snapshots_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/option_stats_realtime.py b/intrinio_sdk/models/option_stats_realtime.py index 161f1467..faa3820f 100644 --- a/intrinio_sdk/models/option_stats_realtime.py +++ b/intrinio_sdk/models/option_stats_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/option_unusual_trade.py b/intrinio_sdk/models/option_unusual_trade.py index 8458fd06..1964b1a9 100644 --- a/intrinio_sdk/models/option_unusual_trade.py +++ b/intrinio_sdk/models/option_unusual_trade.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/options_aggregate.py b/intrinio_sdk/models/options_aggregate.py index 89e91d07..d3ffb4ac 100644 --- a/intrinio_sdk/models/options_aggregate.py +++ b/intrinio_sdk/models/options_aggregate.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/owner.py b/intrinio_sdk/models/owner.py index 91528bab..9a081178 100644 --- a/intrinio_sdk/models/owner.py +++ b/intrinio_sdk/models/owner.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/owner_summary.py b/intrinio_sdk/models/owner_summary.py index 5fa309d7..399b1b81 100644 --- a/intrinio_sdk/models/owner_summary.py +++ b/intrinio_sdk/models/owner_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/realtime_index_price.py b/intrinio_sdk/models/realtime_index_price.py index 48cd5169..1979a27c 100644 --- a/intrinio_sdk/models/realtime_index_price.py +++ b/intrinio_sdk/models/realtime_index_price.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/realtime_index_price_index.py b/intrinio_sdk/models/realtime_index_price_index.py index fd59f852..132f6c34 100644 --- a/intrinio_sdk/models/realtime_index_price_index.py +++ b/intrinio_sdk/models/realtime_index_price_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/realtime_stock_price.py b/intrinio_sdk/models/realtime_stock_price.py index 43985ce2..14c93ce8 100644 --- a/intrinio_sdk/models/realtime_stock_price.py +++ b/intrinio_sdk/models/realtime_stock_price.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/realtime_stock_price_security.py b/intrinio_sdk/models/realtime_stock_price_security.py index 94f6c3f6..9fd3709f 100644 --- a/intrinio_sdk/models/realtime_stock_price_security.py +++ b/intrinio_sdk/models/realtime_stock_price_security.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/relative_strength_index_technical_value.py b/intrinio_sdk/models/relative_strength_index_technical_value.py index 589fbd45..ffc9e470 100644 --- a/intrinio_sdk/models/relative_strength_index_technical_value.py +++ b/intrinio_sdk/models/relative_strength_index_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/reported_financial.py b/intrinio_sdk/models/reported_financial.py index 37c00264..191ca542 100644 --- a/intrinio_sdk/models/reported_financial.py +++ b/intrinio_sdk/models/reported_financial.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/reported_financial_dimension.py b/intrinio_sdk/models/reported_financial_dimension.py index a43bfc32..588c3ec4 100644 --- a/intrinio_sdk/models/reported_financial_dimension.py +++ b/intrinio_sdk/models/reported_financial_dimension.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/reported_tag.py b/intrinio_sdk/models/reported_tag.py index 5867be83..f557c3a9 100644 --- a/intrinio_sdk/models/reported_tag.py +++ b/intrinio_sdk/models/reported_tag.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/security.py b/intrinio_sdk/models/security.py index 54a7a16e..16429461 100644 --- a/intrinio_sdk/models/security.py +++ b/intrinio_sdk/models/security.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/security_history.py b/intrinio_sdk/models/security_history.py index 86a2326c..70cb0384 100644 --- a/intrinio_sdk/models/security_history.py +++ b/intrinio_sdk/models/security_history.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/security_history_list_result.py b/intrinio_sdk/models/security_history_list_result.py index d84bb079..8cb49c07 100644 --- a/intrinio_sdk/models/security_history_list_result.py +++ b/intrinio_sdk/models/security_history_list_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/security_interval_mover.py b/intrinio_sdk/models/security_interval_mover.py index e5bdbe57..d941f95b 100644 --- a/intrinio_sdk/models/security_interval_mover.py +++ b/intrinio_sdk/models/security_interval_mover.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/security_intervals_movers_result.py b/intrinio_sdk/models/security_intervals_movers_result.py index ee5688aa..dd4b9466 100644 --- a/intrinio_sdk/models/security_intervals_movers_result.py +++ b/intrinio_sdk/models/security_intervals_movers_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/security_replay_file_result.py b/intrinio_sdk/models/security_replay_file_result.py index 18c397c9..3c82b301 100644 --- a/intrinio_sdk/models/security_replay_file_result.py +++ b/intrinio_sdk/models/security_replay_file_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/security_screen_clause.py b/intrinio_sdk/models/security_screen_clause.py index 6b2a9e03..ee055e77 100644 --- a/intrinio_sdk/models/security_screen_clause.py +++ b/intrinio_sdk/models/security_screen_clause.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/security_screen_group.py b/intrinio_sdk/models/security_screen_group.py index af57328f..f8dceac2 100644 --- a/intrinio_sdk/models/security_screen_group.py +++ b/intrinio_sdk/models/security_screen_group.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/security_screen_group.py-- b/intrinio_sdk/models/security_screen_group.py-- index fc9910c4..8a9718d1 100644 --- a/intrinio_sdk/models/security_screen_group.py-- +++ b/intrinio_sdk/models/security_screen_group.py-- @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/security_screen_result.py b/intrinio_sdk/models/security_screen_result.py index e535b11e..3424ec68 100644 --- a/intrinio_sdk/models/security_screen_result.py +++ b/intrinio_sdk/models/security_screen_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/security_screen_result_data.py b/intrinio_sdk/models/security_screen_result_data.py index f38ea413..62cc77f5 100644 --- a/intrinio_sdk/models/security_screen_result_data.py +++ b/intrinio_sdk/models/security_screen_result_data.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/security_snapshot_group.py b/intrinio_sdk/models/security_snapshot_group.py index 015da1b1..4a269dbe 100644 --- a/intrinio_sdk/models/security_snapshot_group.py +++ b/intrinio_sdk/models/security_snapshot_group.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/security_snapshots_result.py b/intrinio_sdk/models/security_snapshots_result.py index 324752ee..03ff412a 100644 --- a/intrinio_sdk/models/security_snapshots_result.py +++ b/intrinio_sdk/models/security_snapshots_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/security_summary.py b/intrinio_sdk/models/security_summary.py index a1075c70..2cc82ad9 100644 --- a/intrinio_sdk/models/security_summary.py +++ b/intrinio_sdk/models/security_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/security_trades.py b/intrinio_sdk/models/security_trades.py index 936ed2af..01e3a9a8 100644 --- a/intrinio_sdk/models/security_trades.py +++ b/intrinio_sdk/models/security_trades.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/security_trades_result.py b/intrinio_sdk/models/security_trades_result.py index 3672d1d7..f276eef1 100644 --- a/intrinio_sdk/models/security_trades_result.py +++ b/intrinio_sdk/models/security_trades_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/sic_index.py b/intrinio_sdk/models/sic_index.py index aecc2cb9..79122a94 100644 --- a/intrinio_sdk/models/sic_index.py +++ b/intrinio_sdk/models/sic_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/simple_moving_average_technical_value.py b/intrinio_sdk/models/simple_moving_average_technical_value.py index 8dc04379..d464a817 100644 --- a/intrinio_sdk/models/simple_moving_average_technical_value.py +++ b/intrinio_sdk/models/simple_moving_average_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/standardized_financial.py b/intrinio_sdk/models/standardized_financial.py index 8cd191d6..3fd83d22 100644 --- a/intrinio_sdk/models/standardized_financial.py +++ b/intrinio_sdk/models/standardized_financial.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/standardized_financials_dimension.py b/intrinio_sdk/models/standardized_financials_dimension.py index e6198ad0..6021a6ab 100644 --- a/intrinio_sdk/models/standardized_financials_dimension.py +++ b/intrinio_sdk/models/standardized_financials_dimension.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/stochastic_oscillator_technical_value.py b/intrinio_sdk/models/stochastic_oscillator_technical_value.py index a61dd9dd..671b6c99 100644 --- a/intrinio_sdk/models/stochastic_oscillator_technical_value.py +++ b/intrinio_sdk/models/stochastic_oscillator_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/stock_exchange.py b/intrinio_sdk/models/stock_exchange.py index a011f50d..8bb320a4 100644 --- a/intrinio_sdk/models/stock_exchange.py +++ b/intrinio_sdk/models/stock_exchange.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/stock_market_index.py b/intrinio_sdk/models/stock_market_index.py index 74e84788..9308287e 100644 --- a/intrinio_sdk/models/stock_market_index.py +++ b/intrinio_sdk/models/stock_market_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/stock_market_index_summary.py b/intrinio_sdk/models/stock_market_index_summary.py index a10762eb..efb02ea0 100644 --- a/intrinio_sdk/models/stock_market_index_summary.py +++ b/intrinio_sdk/models/stock_market_index_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/stock_price.py b/intrinio_sdk/models/stock_price.py index 422be5f1..8ae7422d 100644 --- a/intrinio_sdk/models/stock_price.py +++ b/intrinio_sdk/models/stock_price.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/stock_price_adjustment.py b/intrinio_sdk/models/stock_price_adjustment.py index 043b329e..f3bd6b8a 100644 --- a/intrinio_sdk/models/stock_price_adjustment.py +++ b/intrinio_sdk/models/stock_price_adjustment.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/stock_price_adjustment_summary.py b/intrinio_sdk/models/stock_price_adjustment_summary.py index 5b41e4f4..a9a421f8 100644 --- a/intrinio_sdk/models/stock_price_adjustment_summary.py +++ b/intrinio_sdk/models/stock_price_adjustment_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/stock_price_interval.py b/intrinio_sdk/models/stock_price_interval.py index b14bb8a9..3bc6dc9b 100644 --- a/intrinio_sdk/models/stock_price_interval.py +++ b/intrinio_sdk/models/stock_price_interval.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -40,7 +40,21 @@ class StockPriceInterval(object): 'close_time': 'datetime', 'interval': 'str', 'average': 'float', - 'change': 'float' + 'change': 'float', + 'bid_high': 'float', + 'bid_low': 'float', + 'bid_close': 'float', + 'bid_open': 'float', + 'bid_first_time': 'datetime', + 'bid_last_time': 'datetime', + 'bid_change_percent': 'float', + 'ask_high': 'float', + 'ask_low': 'float', + 'ask_close': 'float', + 'ask_open': 'float', + 'ask_first_time': 'datetime', + 'ask_last_time': 'datetime', + 'ask_change_percent': 'float' } attribute_map = { @@ -53,10 +67,24 @@ class StockPriceInterval(object): 'close_time': 'close_time', 'interval': 'interval', 'average': 'average', - 'change': 'change' + 'change': 'change', + 'bid_high': 'bid_high', + 'bid_low': 'bid_low', + 'bid_close': 'bid_close', + 'bid_open': 'bid_open', + 'bid_first_time': 'bid_first_time', + 'bid_last_time': 'bid_last_time', + 'bid_change_percent': 'bid_change_percent', + 'ask_high': 'ask_high', + 'ask_low': 'ask_low', + 'ask_close': 'ask_close', + 'ask_open': 'ask_open', + 'ask_first_time': 'ask_first_time', + 'ask_last_time': 'ask_last_time', + 'ask_change_percent': 'ask_change_percent' } - def __init__(self, time=None, open=None, close=None, high=None, low=None, volume=None, close_time=None, interval=None, average=None, change=None): # noqa: E501 + def __init__(self, time=None, open=None, close=None, high=None, low=None, volume=None, close_time=None, interval=None, average=None, change=None, bid_high=None, bid_low=None, bid_close=None, bid_open=None, bid_first_time=None, bid_last_time=None, bid_change_percent=None, ask_high=None, ask_low=None, ask_close=None, ask_open=None, ask_first_time=None, ask_last_time=None, ask_change_percent=None): # noqa: E501 """StockPriceInterval - a model defined in Swagger""" # noqa: E501 self._time = None @@ -69,6 +97,20 @@ def __init__(self, time=None, open=None, close=None, high=None, low=None, volume self._interval = None self._average = None self._change = None + self._bid_high = None + self._bid_low = None + self._bid_close = None + self._bid_open = None + self._bid_first_time = None + self._bid_last_time = None + self._bid_change_percent = None + self._ask_high = None + self._ask_low = None + self._ask_close = None + self._ask_open = None + self._ask_first_time = None + self._ask_last_time = None + self._ask_change_percent = None self.discriminator = None if time is not None: @@ -91,6 +133,34 @@ def __init__(self, time=None, open=None, close=None, high=None, low=None, volume self.average = average if change is not None: self.change = change + if bid_high is not None: + self.bid_high = bid_high + if bid_low is not None: + self.bid_low = bid_low + if bid_close is not None: + self.bid_close = bid_close + if bid_open is not None: + self.bid_open = bid_open + if bid_first_time is not None: + self.bid_first_time = bid_first_time + if bid_last_time is not None: + self.bid_last_time = bid_last_time + if bid_change_percent is not None: + self.bid_change_percent = bid_change_percent + if ask_high is not None: + self.ask_high = ask_high + if ask_low is not None: + self.ask_low = ask_low + if ask_close is not None: + self.ask_close = ask_close + if ask_open is not None: + self.ask_open = ask_open + if ask_first_time is not None: + self.ask_first_time = ask_first_time + if ask_last_time is not None: + self.ask_last_time = ask_last_time + if ask_change_percent is not None: + self.ask_change_percent = ask_change_percent @property def time(self): @@ -658,6 +728,790 @@ def change(self, change): self._change = change + @property + def bid_high(self): + """Gets the bid_high of this StockPriceInterval. # noqa: E501 + + The highest bid price from the interval. # noqa: E501 + + :return: The bid_high of this StockPriceInterval. # noqa: E501 + :rtype: float + """ + return self._bid_high + + @property + def bid_high_dict(self): + """Gets the bid_high of this StockPriceInterval. # noqa: E501 + + The highest bid price from the interval. as a dictionary. Useful for Panda Dataframes. # noqa: E501 + + :return: The bid_high of this StockPriceInterval. # noqa: E501 + :rtype: float + """ + + result = None + + value = self.bid_high + if isinstance(value, list): + result = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result = value.to_dict() + elif isinstance(value, dict): + result = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result = { 'bid_high': value } + + + return result + + + @bid_high.setter + def bid_high(self, bid_high): + """Sets the bid_high of this StockPriceInterval. + + The highest bid price from the interval. # noqa: E501 + + :param bid_high: The bid_high of this StockPriceInterval. # noqa: E501 + :type: float + """ + + self._bid_high = bid_high + + @property + def bid_low(self): + """Gets the bid_low of this StockPriceInterval. # noqa: E501 + + The lowest bid price from the interval. # noqa: E501 + + :return: The bid_low of this StockPriceInterval. # noqa: E501 + :rtype: float + """ + return self._bid_low + + @property + def bid_low_dict(self): + """Gets the bid_low of this StockPriceInterval. # noqa: E501 + + The lowest bid price from the interval. as a dictionary. Useful for Panda Dataframes. # noqa: E501 + + :return: The bid_low of this StockPriceInterval. # noqa: E501 + :rtype: float + """ + + result = None + + value = self.bid_low + if isinstance(value, list): + result = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result = value.to_dict() + elif isinstance(value, dict): + result = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result = { 'bid_low': value } + + + return result + + + @bid_low.setter + def bid_low(self, bid_low): + """Sets the bid_low of this StockPriceInterval. + + The lowest bid price from the interval. # noqa: E501 + + :param bid_low: The bid_low of this StockPriceInterval. # noqa: E501 + :type: float + """ + + self._bid_low = bid_low + + @property + def bid_close(self): + """Gets the bid_close of this StockPriceInterval. # noqa: E501 + + The last bid price from the interval. # noqa: E501 + + :return: The bid_close of this StockPriceInterval. # noqa: E501 + :rtype: float + """ + return self._bid_close + + @property + def bid_close_dict(self): + """Gets the bid_close of this StockPriceInterval. # noqa: E501 + + The last bid price from the interval. as a dictionary. Useful for Panda Dataframes. # noqa: E501 + + :return: The bid_close of this StockPriceInterval. # noqa: E501 + :rtype: float + """ + + result = None + + value = self.bid_close + if isinstance(value, list): + result = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result = value.to_dict() + elif isinstance(value, dict): + result = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result = { 'bid_close': value } + + + return result + + + @bid_close.setter + def bid_close(self, bid_close): + """Sets the bid_close of this StockPriceInterval. + + The last bid price from the interval. # noqa: E501 + + :param bid_close: The bid_close of this StockPriceInterval. # noqa: E501 + :type: float + """ + + self._bid_close = bid_close + + @property + def bid_open(self): + """Gets the bid_open of this StockPriceInterval. # noqa: E501 + + The first bid price from the interval. # noqa: E501 + + :return: The bid_open of this StockPriceInterval. # noqa: E501 + :rtype: float + """ + return self._bid_open + + @property + def bid_open_dict(self): + """Gets the bid_open of this StockPriceInterval. # noqa: E501 + + The first bid price from the interval. as a dictionary. Useful for Panda Dataframes. # noqa: E501 + + :return: The bid_open of this StockPriceInterval. # noqa: E501 + :rtype: float + """ + + result = None + + value = self.bid_open + if isinstance(value, list): + result = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result = value.to_dict() + elif isinstance(value, dict): + result = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result = { 'bid_open': value } + + + return result + + + @bid_open.setter + def bid_open(self, bid_open): + """Sets the bid_open of this StockPriceInterval. + + The first bid price from the interval. # noqa: E501 + + :param bid_open: The bid_open of this StockPriceInterval. # noqa: E501 + :type: float + """ + + self._bid_open = bid_open + + @property + def bid_first_time(self): + """Gets the bid_first_time of this StockPriceInterval. # noqa: E501 + + The timestamp that represents the first bid time from the interval span. # noqa: E501 + + :return: The bid_first_time of this StockPriceInterval. # noqa: E501 + :rtype: datetime + """ + return self._bid_first_time + + @property + def bid_first_time_dict(self): + """Gets the bid_first_time of this StockPriceInterval. # noqa: E501 + + The timestamp that represents the first bid time from the interval span. as a dictionary. Useful for Panda Dataframes. # noqa: E501 + + :return: The bid_first_time of this StockPriceInterval. # noqa: E501 + :rtype: datetime + """ + + result = None + + value = self.bid_first_time + if isinstance(value, list): + result = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result = value.to_dict() + elif isinstance(value, dict): + result = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result = { 'bid_first_time': value } + + + return result + + + @bid_first_time.setter + def bid_first_time(self, bid_first_time): + """Sets the bid_first_time of this StockPriceInterval. + + The timestamp that represents the first bid time from the interval span. # noqa: E501 + + :param bid_first_time: The bid_first_time of this StockPriceInterval. # noqa: E501 + :type: datetime + """ + + self._bid_first_time = bid_first_time + + @property + def bid_last_time(self): + """Gets the bid_last_time of this StockPriceInterval. # noqa: E501 + + The timestamp that represents the last bid time from the interval span. # noqa: E501 + + :return: The bid_last_time of this StockPriceInterval. # noqa: E501 + :rtype: datetime + """ + return self._bid_last_time + + @property + def bid_last_time_dict(self): + """Gets the bid_last_time of this StockPriceInterval. # noqa: E501 + + The timestamp that represents the last bid time from the interval span. as a dictionary. Useful for Panda Dataframes. # noqa: E501 + + :return: The bid_last_time of this StockPriceInterval. # noqa: E501 + :rtype: datetime + """ + + result = None + + value = self.bid_last_time + if isinstance(value, list): + result = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result = value.to_dict() + elif isinstance(value, dict): + result = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result = { 'bid_last_time': value } + + + return result + + + @bid_last_time.setter + def bid_last_time(self, bid_last_time): + """Sets the bid_last_time of this StockPriceInterval. + + The timestamp that represents the last bid time from the interval span. # noqa: E501 + + :param bid_last_time: The bid_last_time of this StockPriceInterval. # noqa: E501 + :type: datetime + """ + + self._bid_last_time = bid_last_time + + @property + def bid_change_percent(self): + """Gets the bid_change_percent of this StockPriceInterval. # noqa: E501 + + The ratio of the close to open bid difference, in percent. # noqa: E501 + + :return: The bid_change_percent of this StockPriceInterval. # noqa: E501 + :rtype: float + """ + return self._bid_change_percent + + @property + def bid_change_percent_dict(self): + """Gets the bid_change_percent of this StockPriceInterval. # noqa: E501 + + The ratio of the close to open bid difference, in percent. as a dictionary. Useful for Panda Dataframes. # noqa: E501 + + :return: The bid_change_percent of this StockPriceInterval. # noqa: E501 + :rtype: float + """ + + result = None + + value = self.bid_change_percent + if isinstance(value, list): + result = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result = value.to_dict() + elif isinstance(value, dict): + result = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result = { 'bid_change_percent': value } + + + return result + + + @bid_change_percent.setter + def bid_change_percent(self, bid_change_percent): + """Sets the bid_change_percent of this StockPriceInterval. + + The ratio of the close to open bid difference, in percent. # noqa: E501 + + :param bid_change_percent: The bid_change_percent of this StockPriceInterval. # noqa: E501 + :type: float + """ + + self._bid_change_percent = bid_change_percent + + @property + def ask_high(self): + """Gets the ask_high of this StockPriceInterval. # noqa: E501 + + The highest ask price from the interval. # noqa: E501 + + :return: The ask_high of this StockPriceInterval. # noqa: E501 + :rtype: float + """ + return self._ask_high + + @property + def ask_high_dict(self): + """Gets the ask_high of this StockPriceInterval. # noqa: E501 + + The highest ask price from the interval. as a dictionary. Useful for Panda Dataframes. # noqa: E501 + + :return: The ask_high of this StockPriceInterval. # noqa: E501 + :rtype: float + """ + + result = None + + value = self.ask_high + if isinstance(value, list): + result = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result = value.to_dict() + elif isinstance(value, dict): + result = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result = { 'ask_high': value } + + + return result + + + @ask_high.setter + def ask_high(self, ask_high): + """Sets the ask_high of this StockPriceInterval. + + The highest ask price from the interval. # noqa: E501 + + :param ask_high: The ask_high of this StockPriceInterval. # noqa: E501 + :type: float + """ + + self._ask_high = ask_high + + @property + def ask_low(self): + """Gets the ask_low of this StockPriceInterval. # noqa: E501 + + The lowest ask price from the interval. # noqa: E501 + + :return: The ask_low of this StockPriceInterval. # noqa: E501 + :rtype: float + """ + return self._ask_low + + @property + def ask_low_dict(self): + """Gets the ask_low of this StockPriceInterval. # noqa: E501 + + The lowest ask price from the interval. as a dictionary. Useful for Panda Dataframes. # noqa: E501 + + :return: The ask_low of this StockPriceInterval. # noqa: E501 + :rtype: float + """ + + result = None + + value = self.ask_low + if isinstance(value, list): + result = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result = value.to_dict() + elif isinstance(value, dict): + result = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result = { 'ask_low': value } + + + return result + + + @ask_low.setter + def ask_low(self, ask_low): + """Sets the ask_low of this StockPriceInterval. + + The lowest ask price from the interval. # noqa: E501 + + :param ask_low: The ask_low of this StockPriceInterval. # noqa: E501 + :type: float + """ + + self._ask_low = ask_low + + @property + def ask_close(self): + """Gets the ask_close of this StockPriceInterval. # noqa: E501 + + The last ask price from the interval. # noqa: E501 + + :return: The ask_close of this StockPriceInterval. # noqa: E501 + :rtype: float + """ + return self._ask_close + + @property + def ask_close_dict(self): + """Gets the ask_close of this StockPriceInterval. # noqa: E501 + + The last ask price from the interval. as a dictionary. Useful for Panda Dataframes. # noqa: E501 + + :return: The ask_close of this StockPriceInterval. # noqa: E501 + :rtype: float + """ + + result = None + + value = self.ask_close + if isinstance(value, list): + result = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result = value.to_dict() + elif isinstance(value, dict): + result = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result = { 'ask_close': value } + + + return result + + + @ask_close.setter + def ask_close(self, ask_close): + """Sets the ask_close of this StockPriceInterval. + + The last ask price from the interval. # noqa: E501 + + :param ask_close: The ask_close of this StockPriceInterval. # noqa: E501 + :type: float + """ + + self._ask_close = ask_close + + @property + def ask_open(self): + """Gets the ask_open of this StockPriceInterval. # noqa: E501 + + The first ask price from the interval. # noqa: E501 + + :return: The ask_open of this StockPriceInterval. # noqa: E501 + :rtype: float + """ + return self._ask_open + + @property + def ask_open_dict(self): + """Gets the ask_open of this StockPriceInterval. # noqa: E501 + + The first ask price from the interval. as a dictionary. Useful for Panda Dataframes. # noqa: E501 + + :return: The ask_open of this StockPriceInterval. # noqa: E501 + :rtype: float + """ + + result = None + + value = self.ask_open + if isinstance(value, list): + result = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result = value.to_dict() + elif isinstance(value, dict): + result = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result = { 'ask_open': value } + + + return result + + + @ask_open.setter + def ask_open(self, ask_open): + """Sets the ask_open of this StockPriceInterval. + + The first ask price from the interval. # noqa: E501 + + :param ask_open: The ask_open of this StockPriceInterval. # noqa: E501 + :type: float + """ + + self._ask_open = ask_open + + @property + def ask_first_time(self): + """Gets the ask_first_time of this StockPriceInterval. # noqa: E501 + + The timestamp that represents the first ask time from the interval span. # noqa: E501 + + :return: The ask_first_time of this StockPriceInterval. # noqa: E501 + :rtype: datetime + """ + return self._ask_first_time + + @property + def ask_first_time_dict(self): + """Gets the ask_first_time of this StockPriceInterval. # noqa: E501 + + The timestamp that represents the first ask time from the interval span. as a dictionary. Useful for Panda Dataframes. # noqa: E501 + + :return: The ask_first_time of this StockPriceInterval. # noqa: E501 + :rtype: datetime + """ + + result = None + + value = self.ask_first_time + if isinstance(value, list): + result = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result = value.to_dict() + elif isinstance(value, dict): + result = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result = { 'ask_first_time': value } + + + return result + + + @ask_first_time.setter + def ask_first_time(self, ask_first_time): + """Sets the ask_first_time of this StockPriceInterval. + + The timestamp that represents the first ask time from the interval span. # noqa: E501 + + :param ask_first_time: The ask_first_time of this StockPriceInterval. # noqa: E501 + :type: datetime + """ + + self._ask_first_time = ask_first_time + + @property + def ask_last_time(self): + """Gets the ask_last_time of this StockPriceInterval. # noqa: E501 + + The timestamp that represents the last ask time from the interval span. # noqa: E501 + + :return: The ask_last_time of this StockPriceInterval. # noqa: E501 + :rtype: datetime + """ + return self._ask_last_time + + @property + def ask_last_time_dict(self): + """Gets the ask_last_time of this StockPriceInterval. # noqa: E501 + + The timestamp that represents the last ask time from the interval span. as a dictionary. Useful for Panda Dataframes. # noqa: E501 + + :return: The ask_last_time of this StockPriceInterval. # noqa: E501 + :rtype: datetime + """ + + result = None + + value = self.ask_last_time + if isinstance(value, list): + result = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result = value.to_dict() + elif isinstance(value, dict): + result = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result = { 'ask_last_time': value } + + + return result + + + @ask_last_time.setter + def ask_last_time(self, ask_last_time): + """Sets the ask_last_time of this StockPriceInterval. + + The timestamp that represents the last ask time from the interval span. # noqa: E501 + + :param ask_last_time: The ask_last_time of this StockPriceInterval. # noqa: E501 + :type: datetime + """ + + self._ask_last_time = ask_last_time + + @property + def ask_change_percent(self): + """Gets the ask_change_percent of this StockPriceInterval. # noqa: E501 + + The ratio of the close to open ask difference, in percent. # noqa: E501 + + :return: The ask_change_percent of this StockPriceInterval. # noqa: E501 + :rtype: float + """ + return self._ask_change_percent + + @property + def ask_change_percent_dict(self): + """Gets the ask_change_percent of this StockPriceInterval. # noqa: E501 + + The ratio of the close to open ask difference, in percent. as a dictionary. Useful for Panda Dataframes. # noqa: E501 + + :return: The ask_change_percent of this StockPriceInterval. # noqa: E501 + :rtype: float + """ + + result = None + + value = self.ask_change_percent + if isinstance(value, list): + result = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result = value.to_dict() + elif isinstance(value, dict): + result = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result = { 'ask_change_percent': value } + + + return result + + + @ask_change_percent.setter + def ask_change_percent(self, ask_change_percent): + """Sets the ask_change_percent of this StockPriceInterval. + + The ratio of the close to open ask difference, in percent. # noqa: E501 + + :param ask_change_percent: The ask_change_percent of this StockPriceInterval. # noqa: E501 + :type: float + """ + + self._ask_change_percent = ask_change_percent + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/intrinio_sdk/models/stock_price_summary.py b/intrinio_sdk/models/stock_price_summary.py index 0ff150d8..045c1808 100644 --- a/intrinio_sdk/models/stock_price_summary.py +++ b/intrinio_sdk/models/stock_price_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/technical_indicator.py b/intrinio_sdk/models/technical_indicator.py index effcf667..42600505 100644 --- a/intrinio_sdk/models/technical_indicator.py +++ b/intrinio_sdk/models/technical_indicator.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/thea_entity_answer.py b/intrinio_sdk/models/thea_entity_answer.py index a2129c8f..83b8e624 100644 --- a/intrinio_sdk/models/thea_entity_answer.py +++ b/intrinio_sdk/models/thea_entity_answer.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/thea_source_document.py b/intrinio_sdk/models/thea_source_document.py index b31e7b82..5f6574fe 100644 --- a/intrinio_sdk/models/thea_source_document.py +++ b/intrinio_sdk/models/thea_source_document.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/triple_exponential_average_technical_value.py b/intrinio_sdk/models/triple_exponential_average_technical_value.py index 2a6d3fab..df0be16f 100644 --- a/intrinio_sdk/models/triple_exponential_average_technical_value.py +++ b/intrinio_sdk/models/triple_exponential_average_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/true_strength_index_technical_value.py b/intrinio_sdk/models/true_strength_index_technical_value.py index 3fabdc59..ab5198be 100644 --- a/intrinio_sdk/models/true_strength_index_technical_value.py +++ b/intrinio_sdk/models/true_strength_index_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/ultimate_oscillator_technical_value.py b/intrinio_sdk/models/ultimate_oscillator_technical_value.py index e60bf00f..dad66c58 100644 --- a/intrinio_sdk/models/ultimate_oscillator_technical_value.py +++ b/intrinio_sdk/models/ultimate_oscillator_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/volume_price_trend_technical_value.py b/intrinio_sdk/models/volume_price_trend_technical_value.py index 4ad0c181..a7b7cc3a 100644 --- a/intrinio_sdk/models/volume_price_trend_technical_value.py +++ b/intrinio_sdk/models/volume_price_trend_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/volume_weighted_average_price_value.py b/intrinio_sdk/models/volume_weighted_average_price_value.py index fb00be0c..b8475a33 100644 --- a/intrinio_sdk/models/volume_weighted_average_price_value.py +++ b/intrinio_sdk/models/volume_weighted_average_price_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/vortex_indicator_technical_value.py b/intrinio_sdk/models/vortex_indicator_technical_value.py index 94f01354..ad2b7d80 100644 --- a/intrinio_sdk/models/vortex_indicator_technical_value.py +++ b/intrinio_sdk/models/vortex_indicator_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/williams_r_technical_value.py b/intrinio_sdk/models/williams_r_technical_value.py index 8a6ac271..2dc8bdaf 100644 --- a/intrinio_sdk/models/williams_r_technical_value.py +++ b/intrinio_sdk/models/williams_r_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/zacks_analyst_rating.py b/intrinio_sdk/models/zacks_analyst_rating.py index b78aeab2..8c66f661 100644 --- a/intrinio_sdk/models/zacks_analyst_rating.py +++ b/intrinio_sdk/models/zacks_analyst_rating.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/zacks_analyst_rating_snapshot.py b/intrinio_sdk/models/zacks_analyst_rating_snapshot.py index c1fd1efe..0ad2ff3a 100644 --- a/intrinio_sdk/models/zacks_analyst_rating_snapshot.py +++ b/intrinio_sdk/models/zacks_analyst_rating_snapshot.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/zacks_analyst_rating_summary.py b/intrinio_sdk/models/zacks_analyst_rating_summary.py index 0b2070cf..5a1fb234 100644 --- a/intrinio_sdk/models/zacks_analyst_rating_summary.py +++ b/intrinio_sdk/models/zacks_analyst_rating_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/zacks_ebitda_consensus.py b/intrinio_sdk/models/zacks_ebitda_consensus.py index ad03202f..d8dabc95 100644 --- a/intrinio_sdk/models/zacks_ebitda_consensus.py +++ b/intrinio_sdk/models/zacks_ebitda_consensus.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/zacks_eps_estimate.py b/intrinio_sdk/models/zacks_eps_estimate.py index 54549078..0bb3e47d 100644 --- a/intrinio_sdk/models/zacks_eps_estimate.py +++ b/intrinio_sdk/models/zacks_eps_estimate.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/zacks_eps_growth_rate.py b/intrinio_sdk/models/zacks_eps_growth_rate.py index f4854af1..5d8b6190 100644 --- a/intrinio_sdk/models/zacks_eps_growth_rate.py +++ b/intrinio_sdk/models/zacks_eps_growth_rate.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/zacks_eps_surprise.py b/intrinio_sdk/models/zacks_eps_surprise.py index 30facf62..8ee17da2 100644 --- a/intrinio_sdk/models/zacks_eps_surprise.py +++ b/intrinio_sdk/models/zacks_eps_surprise.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/zacks_eps_surprise_summary.py b/intrinio_sdk/models/zacks_eps_surprise_summary.py index 7cac87b1..da51f02b 100644 --- a/intrinio_sdk/models/zacks_eps_surprise_summary.py +++ b/intrinio_sdk/models/zacks_eps_surprise_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/zacks_etf_holding.py b/intrinio_sdk/models/zacks_etf_holding.py index 3eeee839..4323de82 100644 --- a/intrinio_sdk/models/zacks_etf_holding.py +++ b/intrinio_sdk/models/zacks_etf_holding.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/zacks_forward_pe.py b/intrinio_sdk/models/zacks_forward_pe.py index d7f7b301..249d6b8f 100644 --- a/intrinio_sdk/models/zacks_forward_pe.py +++ b/intrinio_sdk/models/zacks_forward_pe.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/zacks_institutional_holding.py b/intrinio_sdk/models/zacks_institutional_holding.py index fa5d43aa..6cc4766c 100644 --- a/intrinio_sdk/models/zacks_institutional_holding.py +++ b/intrinio_sdk/models/zacks_institutional_holding.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/zacks_institutional_holding_company_detail.py b/intrinio_sdk/models/zacks_institutional_holding_company_detail.py index 8c28f459..9f04aa6c 100644 --- a/intrinio_sdk/models/zacks_institutional_holding_company_detail.py +++ b/intrinio_sdk/models/zacks_institutional_holding_company_detail.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/zacks_institutional_holding_company_summary.py b/intrinio_sdk/models/zacks_institutional_holding_company_summary.py index fcf5134d..d36c70bb 100644 --- a/intrinio_sdk/models/zacks_institutional_holding_company_summary.py +++ b/intrinio_sdk/models/zacks_institutional_holding_company_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/zacks_institutional_holding_historical_summary.py b/intrinio_sdk/models/zacks_institutional_holding_historical_summary.py index 46f924fd..37b27a13 100644 --- a/intrinio_sdk/models/zacks_institutional_holding_historical_summary.py +++ b/intrinio_sdk/models/zacks_institutional_holding_historical_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/zacks_institutional_holding_owner_detail.py b/intrinio_sdk/models/zacks_institutional_holding_owner_detail.py index ce1d322f..dd483860 100644 --- a/intrinio_sdk/models/zacks_institutional_holding_owner_detail.py +++ b/intrinio_sdk/models/zacks_institutional_holding_owner_detail.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/zacks_institutional_holding_owner_summary.py b/intrinio_sdk/models/zacks_institutional_holding_owner_summary.py index 172c71a5..e0ea0851 100644 --- a/intrinio_sdk/models/zacks_institutional_holding_owner_summary.py +++ b/intrinio_sdk/models/zacks_institutional_holding_owner_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/zacks_long_term_growth_rate.py b/intrinio_sdk/models/zacks_long_term_growth_rate.py index f96e6c6c..4d381d26 100644 --- a/intrinio_sdk/models/zacks_long_term_growth_rate.py +++ b/intrinio_sdk/models/zacks_long_term_growth_rate.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/zacks_sales_estimate.py b/intrinio_sdk/models/zacks_sales_estimate.py index e9dab23d..99b9df12 100644 --- a/intrinio_sdk/models/zacks_sales_estimate.py +++ b/intrinio_sdk/models/zacks_sales_estimate.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/zacks_sales_surprise.py b/intrinio_sdk/models/zacks_sales_surprise.py index e44d0b19..f865ede1 100644 --- a/intrinio_sdk/models/zacks_sales_surprise.py +++ b/intrinio_sdk/models/zacks_sales_surprise.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/zacks_sales_surprise_summary.py b/intrinio_sdk/models/zacks_sales_surprise_summary.py index 0b2b00a7..ff1e1808 100644 --- a/intrinio_sdk/models/zacks_sales_surprise_summary.py +++ b/intrinio_sdk/models/zacks_sales_surprise_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/models/zacks_target_price_consensus.py b/intrinio_sdk/models/zacks_target_price_consensus.py index 652bb0f1..62e5eda6 100644 --- a/intrinio_sdk/models/zacks_target_price_consensus.py +++ b/intrinio_sdk/models/zacks_target_price_consensus.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/intrinio_sdk/rest.py b/intrinio_sdk/rest.py index 0377ac47..36de221f 100644 --- a/intrinio_sdk/rest.py +++ b/intrinio_sdk/rest.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/setup.py b/setup.py index 7f4a5d9b..4dec7604 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -14,7 +14,7 @@ from setuptools import setup, find_packages # noqa: H301 NAME = "intrinio-sdk" -VERSION = "6.29.1" +VERSION = "6.30.0" # To install the library, run the following # # python setup.py install diff --git a/test/test_accumulation_distribution_index_technical_value.py b/test/test_accumulation_distribution_index_technical_value.py index 09de8e12..1f07cdab 100644 --- a/test/test_accumulation_distribution_index_technical_value.py +++ b/test/test_accumulation_distribution_index_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_bulk_download_links.py b/test/test_api_response_bulk_download_links.py index 04339a4b..b6c8e401 100644 --- a/test/test_api_response_bulk_download_links.py +++ b/test/test_api_response_bulk_download_links.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_companies.py b/test/test_api_response_companies.py index 32344b51..76a317c2 100644 --- a/test/test_api_response_companies.py +++ b/test/test_api_response_companies.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_companies_search.py b/test/test_api_response_companies_search.py index 2f0be801..85d74898 100644 --- a/test/test_api_response_companies_search.py +++ b/test/test_api_response_companies_search.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_company_answers.py b/test/test_api_response_company_answers.py index e51619f6..c2f4beed 100644 --- a/test/test_api_response_company_answers.py +++ b/test/test_api_response_company_answers.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_company_daily_metrics.py b/test/test_api_response_company_daily_metrics.py index b6a49753..5480ddcd 100644 --- a/test/test_api_response_company_daily_metrics.py +++ b/test/test_api_response_company_daily_metrics.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_company_filings.py b/test/test_api_response_company_filings.py index 45f50669..ee21a4fa 100644 --- a/test/test_api_response_company_filings.py +++ b/test/test_api_response_company_filings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_company_fundamentals.py b/test/test_api_response_company_fundamentals.py index 47865066..3767c943 100644 --- a/test/test_api_response_company_fundamentals.py +++ b/test/test_api_response_company_fundamentals.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_company_historical_data.py b/test/test_api_response_company_historical_data.py index 5b6d5da4..c6f285d7 100644 --- a/test/test_api_response_company_historical_data.py +++ b/test/test_api_response_company_historical_data.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_company_insider_transaction_filings.py b/test/test_api_response_company_insider_transaction_filings.py index b5a6e94a..5c375ff5 100644 --- a/test/test_api_response_company_insider_transaction_filings.py +++ b/test/test_api_response_company_insider_transaction_filings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_company_news.py b/test/test_api_response_company_news.py index 42838c0a..aac4ae57 100644 --- a/test/test_api_response_company_news.py +++ b/test/test_api_response_company_news.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_company_news_body.py b/test/test_api_response_company_news_body.py index a9d11872..aa3319c7 100644 --- a/test/test_api_response_company_news_body.py +++ b/test/test_api_response_company_news_body.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_company_public_float_result.py b/test/test_api_response_company_public_float_result.py index 8a420e90..a91599cd 100644 --- a/test/test_api_response_company_public_float_result.py +++ b/test/test_api_response_company_public_float_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_company_recognize.py b/test/test_api_response_company_recognize.py index f36eae47..9425609b 100644 --- a/test/test_api_response_company_recognize.py +++ b/test/test_api_response_company_recognize.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_company_securities.py b/test/test_api_response_company_securities.py index a25a9f97..e3808289 100644 --- a/test/test_api_response_company_securities.py +++ b/test/test_api_response_company_securities.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_company_shares_outstanding.py b/test/test_api_response_company_shares_outstanding.py index b2b77f22..f9a1355a 100644 --- a/test/test_api_response_company_shares_outstanding.py +++ b/test/test_api_response_company_shares_outstanding.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_data_tags.py b/test/test_api_response_data_tags.py index 28d5b882..f0343668 100644 --- a/test/test_api_response_data_tags.py +++ b/test/test_api_response_data_tags.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_data_tags_search.py b/test/test_api_response_data_tags_search.py index 3e348400..a08e98f6 100644 --- a/test/test_api_response_data_tags_search.py +++ b/test/test_api_response_data_tags_search.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_economic_index_historical_data.py b/test/test_api_response_economic_index_historical_data.py index 783c01e2..1db80fe7 100644 --- a/test/test_api_response_economic_index_historical_data.py +++ b/test/test_api_response_economic_index_historical_data.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_economic_indices.py b/test/test_api_response_economic_indices.py index 5b7fc8db..dceb6bda 100644 --- a/test/test_api_response_economic_indices.py +++ b/test/test_api_response_economic_indices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_economic_indices_search.py b/test/test_api_response_economic_indices_search.py index 812e8088..ea27b05b 100644 --- a/test/test_api_response_economic_indices_search.py +++ b/test/test_api_response_economic_indices_search.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_eod_index_prices.py b/test/test_api_response_eod_index_prices.py index 2d011f02..21469117 100644 --- a/test/test_api_response_eod_index_prices.py +++ b/test/test_api_response_eod_index_prices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_eod_index_prices_all.py b/test/test_api_response_eod_index_prices_all.py index fb4a187b..dea86248 100644 --- a/test/test_api_response_eod_index_prices_all.py +++ b/test/test_api_response_eod_index_prices_all.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_esg_companies.py b/test/test_api_response_esg_companies.py index 14984799..c20be355 100644 --- a/test/test_api_response_esg_companies.py +++ b/test/test_api_response_esg_companies.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_esg_company_comprehensive_rating_history.py b/test/test_api_response_esg_company_comprehensive_rating_history.py index 72c143b6..4833b8d8 100644 --- a/test/test_api_response_esg_company_comprehensive_rating_history.py +++ b/test/test_api_response_esg_company_comprehensive_rating_history.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_esg_company_rating_history.py b/test/test_api_response_esg_company_rating_history.py index 79b79608..4151955d 100644 --- a/test/test_api_response_esg_company_rating_history.py +++ b/test/test_api_response_esg_company_rating_history.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_esg_latest.py b/test/test_api_response_esg_latest.py index 637610bd..d858126a 100644 --- a/test/test_api_response_esg_latest.py +++ b/test/test_api_response_esg_latest.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_esg_latest_comprehensive.py b/test/test_api_response_esg_latest_comprehensive.py index 2a1f8e7f..9451c55a 100644 --- a/test/test_api_response_esg_latest_comprehensive.py +++ b/test/test_api_response_esg_latest_comprehensive.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_et_fs.py b/test/test_api_response_et_fs.py index 90515785..a25a3271 100644 --- a/test/test_api_response_et_fs.py +++ b/test/test_api_response_et_fs.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_etf_holdings.py b/test/test_api_response_etf_holdings.py index eb18b957..f42d2d66 100644 --- a/test/test_api_response_etf_holdings.py +++ b/test/test_api_response_etf_holdings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_filing_answers.py b/test/test_api_response_filing_answers.py index 899a3107..d62bc515 100644 --- a/test/test_api_response_filing_answers.py +++ b/test/test_api_response_filing_answers.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_filing_fundamentals.py b/test/test_api_response_filing_fundamentals.py index 918fa381..d04e6b17 100644 --- a/test/test_api_response_filing_fundamentals.py +++ b/test/test_api_response_filing_fundamentals.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_filing_notes.py b/test/test_api_response_filing_notes.py index d28eb3a4..bf9acd4b 100644 --- a/test/test_api_response_filing_notes.py +++ b/test/test_api_response_filing_notes.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_filing_notes_search.py b/test/test_api_response_filing_notes_search.py index fc6b41dc..59f8dcb8 100644 --- a/test/test_api_response_filing_notes_search.py +++ b/test/test_api_response_filing_notes_search.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_filings.py b/test/test_api_response_filings.py index 3463619e..9227d437 100644 --- a/test/test_api_response_filings.py +++ b/test/test_api_response_filings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_forex_currencies.py b/test/test_api_response_forex_currencies.py index c0f03d8d..550755d4 100644 --- a/test/test_api_response_forex_currencies.py +++ b/test/test_api_response_forex_currencies.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_forex_pairs.py b/test/test_api_response_forex_pairs.py index 7af63387..101f4e8a 100644 --- a/test/test_api_response_forex_pairs.py +++ b/test/test_api_response_forex_pairs.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_forex_prices.py b/test/test_api_response_forex_prices.py index 910d0d64..dbefe292 100644 --- a/test/test_api_response_forex_prices.py +++ b/test/test_api_response_forex_prices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_historical_data.py b/test/test_api_response_historical_data.py index 7c05e8b6..e9cdd057 100644 --- a/test/test_api_response_historical_data.py +++ b/test/test_api_response_historical_data.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_index.py b/test/test_api_response_index.py index 906189f6..d9d133d8 100644 --- a/test/test_api_response_index.py +++ b/test/test_api_response_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_indices.py b/test/test_api_response_indices.py index a835778f..cece2b0f 100644 --- a/test/test_api_response_indices.py +++ b/test/test_api_response_indices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_initial_public_offerings.py b/test/test_api_response_initial_public_offerings.py index 3ce08c91..703eebf4 100644 --- a/test/test_api_response_initial_public_offerings.py +++ b/test/test_api_response_initial_public_offerings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_insider_transaction_filings.py b/test/test_api_response_insider_transaction_filings.py index 37f02e36..7745b265 100644 --- a/test/test_api_response_insider_transaction_filings.py +++ b/test/test_api_response_insider_transaction_filings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_municipalities.py b/test/test_api_response_municipalities.py index 41700bdb..5277634f 100644 --- a/test/test_api_response_municipalities.py +++ b/test/test_api_response_municipalities.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_municipalitiy_financials.py b/test/test_api_response_municipalitiy_financials.py index ac885bc9..f62c8ac3 100644 --- a/test/test_api_response_municipalitiy_financials.py +++ b/test/test_api_response_municipalitiy_financials.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_news.py b/test/test_api_response_news.py index e88ba1be..ce18236e 100644 --- a/test/test_api_response_news.py +++ b/test/test_api_response_news.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_option_prices.py b/test/test_api_response_option_prices.py index a65e46da..9eba76b3 100644 --- a/test/test_api_response_option_prices.py +++ b/test/test_api_response_option_prices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_options.py b/test/test_api_response_options.py index cc94104a..622b94fd 100644 --- a/test/test_api_response_options.py +++ b/test/test_api_response_options.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_options_aggregates.py b/test/test_api_response_options_aggregates.py index b87f45ad..6ab4887f 100644 --- a/test/test_api_response_options_aggregates.py +++ b/test/test_api_response_options_aggregates.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_options_chain.py b/test/test_api_response_options_chain.py index 58e05b12..4b1b2e53 100644 --- a/test/test_api_response_options_chain.py +++ b/test/test_api_response_options_chain.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_options_chain_eod.py b/test/test_api_response_options_chain_eod.py index 5779b08e..d37fd844 100644 --- a/test/test_api_response_options_chain_eod.py +++ b/test/test_api_response_options_chain_eod.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_options_chain_realtime.py b/test/test_api_response_options_chain_realtime.py index e3254649..471b9c71 100644 --- a/test/test_api_response_options_chain_realtime.py +++ b/test/test_api_response_options_chain_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_options_expirations.py b/test/test_api_response_options_expirations.py index 308b59ea..edc749e6 100644 --- a/test/test_api_response_options_expirations.py +++ b/test/test_api_response_options_expirations.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_options_price_realtime.py b/test/test_api_response_options_price_realtime.py index df99729d..7d71d85e 100644 --- a/test/test_api_response_options_price_realtime.py +++ b/test/test_api_response_options_price_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_options_prices_batch_realtime.py b/test/test_api_response_options_prices_batch_realtime.py index c2799fa0..b59ed71b 100644 --- a/test/test_api_response_options_prices_batch_realtime.py +++ b/test/test_api_response_options_prices_batch_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_options_prices_by_ticker_realtime.py b/test/test_api_response_options_prices_by_ticker_realtime.py index ba766ec6..7315777f 100644 --- a/test/test_api_response_options_prices_by_ticker_realtime.py +++ b/test/test_api_response_options_prices_by_ticker_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_options_prices_eod.py b/test/test_api_response_options_prices_eod.py index 212f6b1e..754dfb24 100644 --- a/test/test_api_response_options_prices_eod.py +++ b/test/test_api_response_options_prices_eod.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_options_realtime.py b/test/test_api_response_options_realtime.py index f57b1e94..2d601ce1 100644 --- a/test/test_api_response_options_realtime.py +++ b/test/test_api_response_options_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_options_stats_realtime.py b/test/test_api_response_options_stats_realtime.py index 0c6b75f3..ce032dad 100644 --- a/test/test_api_response_options_stats_realtime.py +++ b/test/test_api_response_options_stats_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_options_tickers.py b/test/test_api_response_options_tickers.py index a983b750..82f75b0c 100644 --- a/test/test_api_response_options_tickers.py +++ b/test/test_api_response_options_tickers.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_options_unusual_activity.py b/test/test_api_response_options_unusual_activity.py index 661cce71..ca665928 100644 --- a/test/test_api_response_options_unusual_activity.py +++ b/test/test_api_response_options_unusual_activity.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_owner_insider_transaction_filings.py b/test/test_api_response_owner_insider_transaction_filings.py index 85c98108..b562300f 100644 --- a/test/test_api_response_owner_insider_transaction_filings.py +++ b/test/test_api_response_owner_insider_transaction_filings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_owner_institutional_holdings.py b/test/test_api_response_owner_institutional_holdings.py index 19fa9e8b..4c25d5d1 100644 --- a/test/test_api_response_owner_institutional_holdings.py +++ b/test/test_api_response_owner_institutional_holdings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_owners.py b/test/test_api_response_owners.py index 68954997..d5a7d0b0 100644 --- a/test/test_api_response_owners.py +++ b/test/test_api_response_owners.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_realtime_index_prices.py b/test/test_api_response_realtime_index_prices.py index 71dd041a..9048015a 100644 --- a/test/test_api_response_realtime_index_prices.py +++ b/test/test_api_response_realtime_index_prices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_reported_financials.py b/test/test_api_response_reported_financials.py index d985974f..3ea3dd2d 100644 --- a/test/test_api_response_reported_financials.py +++ b/test/test_api_response_reported_financials.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_securities.py b/test/test_api_response_securities.py index 359f8c86..a565f8bf 100644 --- a/test/test_api_response_securities.py +++ b/test/test_api_response_securities.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_securities_search.py b/test/test_api_response_securities_search.py index 67f8fc6b..039b265f 100644 --- a/test/test_api_response_securities_search.py +++ b/test/test_api_response_securities_search.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_accumulation_distribution_index.py b/test/test_api_response_security_accumulation_distribution_index.py index a9fb4148..ac2acf93 100644 --- a/test/test_api_response_security_accumulation_distribution_index.py +++ b/test/test_api_response_security_accumulation_distribution_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_average_daily_trading_volume.py b/test/test_api_response_security_average_daily_trading_volume.py index 0d817129..2c3c403f 100644 --- a/test/test_api_response_security_average_daily_trading_volume.py +++ b/test/test_api_response_security_average_daily_trading_volume.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_average_directional_index.py b/test/test_api_response_security_average_directional_index.py index 8a2da317..90f0ec1b 100644 --- a/test/test_api_response_security_average_directional_index.py +++ b/test/test_api_response_security_average_directional_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_average_true_range.py b/test/test_api_response_security_average_true_range.py index 6dfc274d..7efb9a49 100644 --- a/test/test_api_response_security_average_true_range.py +++ b/test/test_api_response_security_average_true_range.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_awesome_oscillator.py b/test/test_api_response_security_awesome_oscillator.py index 242bfb01..46f4c6a0 100644 --- a/test/test_api_response_security_awesome_oscillator.py +++ b/test/test_api_response_security_awesome_oscillator.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_bollinger_bands.py b/test/test_api_response_security_bollinger_bands.py index 2f90db6c..f12bbd80 100644 --- a/test/test_api_response_security_bollinger_bands.py +++ b/test/test_api_response_security_bollinger_bands.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_chaikin_money_flow.py b/test/test_api_response_security_chaikin_money_flow.py index 7c692dc0..670dc9d5 100644 --- a/test/test_api_response_security_chaikin_money_flow.py +++ b/test/test_api_response_security_chaikin_money_flow.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_commodity_channel_index.py b/test/test_api_response_security_commodity_channel_index.py index 650f6d31..f6aea0b8 100644 --- a/test/test_api_response_security_commodity_channel_index.py +++ b/test/test_api_response_security_commodity_channel_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_detrended_price_oscillator.py b/test/test_api_response_security_detrended_price_oscillator.py index 8e1c8578..4992c3b5 100644 --- a/test/test_api_response_security_detrended_price_oscillator.py +++ b/test/test_api_response_security_detrended_price_oscillator.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_donchian_channel.py b/test/test_api_response_security_donchian_channel.py index 96248c39..3e3f8f68 100644 --- a/test/test_api_response_security_donchian_channel.py +++ b/test/test_api_response_security_donchian_channel.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_ease_of_movement.py b/test/test_api_response_security_ease_of_movement.py index 7bacc5c2..858dba59 100644 --- a/test/test_api_response_security_ease_of_movement.py +++ b/test/test_api_response_security_ease_of_movement.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_force_index.py b/test/test_api_response_security_force_index.py index 5feab07d..74f6c12c 100644 --- a/test/test_api_response_security_force_index.py +++ b/test/test_api_response_security_force_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_historical_data.py b/test/test_api_response_security_historical_data.py index c1b4a966..e8584e8f 100644 --- a/test/test_api_response_security_historical_data.py +++ b/test/test_api_response_security_historical_data.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_ichimoku_kinko_hyo.py b/test/test_api_response_security_ichimoku_kinko_hyo.py index 7ff701ec..c68340e6 100644 --- a/test/test_api_response_security_ichimoku_kinko_hyo.py +++ b/test/test_api_response_security_ichimoku_kinko_hyo.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_institutional_ownership.py b/test/test_api_response_security_institutional_ownership.py index 1122b20d..3fd3e9a1 100644 --- a/test/test_api_response_security_institutional_ownership.py +++ b/test/test_api_response_security_institutional_ownership.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_interval_prices.py b/test/test_api_response_security_interval_prices.py index 727b871d..778ee6c2 100644 --- a/test/test_api_response_security_interval_prices.py +++ b/test/test_api_response_security_interval_prices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_intraday_prices.py b/test/test_api_response_security_intraday_prices.py index 594f78ee..0d663445 100644 --- a/test/test_api_response_security_intraday_prices.py +++ b/test/test_api_response_security_intraday_prices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_keltner_channel.py b/test/test_api_response_security_keltner_channel.py index 3df9966f..819fd5bd 100644 --- a/test/test_api_response_security_keltner_channel.py +++ b/test/test_api_response_security_keltner_channel.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_know_sure_thing.py b/test/test_api_response_security_know_sure_thing.py index c5938592..421e45d2 100644 --- a/test/test_api_response_security_know_sure_thing.py +++ b/test/test_api_response_security_know_sure_thing.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_mass_index.py b/test/test_api_response_security_mass_index.py index e796156b..5e24e0e1 100644 --- a/test/test_api_response_security_mass_index.py +++ b/test/test_api_response_security_mass_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_money_flow_index.py b/test/test_api_response_security_money_flow_index.py index adefc315..7bfa32a2 100644 --- a/test/test_api_response_security_money_flow_index.py +++ b/test/test_api_response_security_money_flow_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_moving_average_convergence_divergence.py b/test/test_api_response_security_moving_average_convergence_divergence.py index fd71e12c..a1005222 100644 --- a/test/test_api_response_security_moving_average_convergence_divergence.py +++ b/test/test_api_response_security_moving_average_convergence_divergence.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_negative_volume_index.py b/test/test_api_response_security_negative_volume_index.py index 7612e6ae..1b82c97d 100644 --- a/test/test_api_response_security_negative_volume_index.py +++ b/test/test_api_response_security_negative_volume_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_on_balance_volume.py b/test/test_api_response_security_on_balance_volume.py index 426e1803..48343ade 100644 --- a/test/test_api_response_security_on_balance_volume.py +++ b/test/test_api_response_security_on_balance_volume.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_on_balance_volume_mean.py b/test/test_api_response_security_on_balance_volume_mean.py index 68adeb39..af6028e9 100644 --- a/test/test_api_response_security_on_balance_volume_mean.py +++ b/test/test_api_response_security_on_balance_volume_mean.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_quote.py b/test/test_api_response_security_quote.py index e6f842eb..ce67e649 100644 --- a/test/test_api_response_security_quote.py +++ b/test/test_api_response_security_quote.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_relative_strength_index.py b/test/test_api_response_security_relative_strength_index.py index aabec3b5..fd779830 100644 --- a/test/test_api_response_security_relative_strength_index.py +++ b/test/test_api_response_security_relative_strength_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_simple_moving_average.py b/test/test_api_response_security_simple_moving_average.py index 32262853..9f73a267 100644 --- a/test/test_api_response_security_simple_moving_average.py +++ b/test/test_api_response_security_simple_moving_average.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_stochastic_oscillator.py b/test/test_api_response_security_stochastic_oscillator.py index 60d8622b..4dc93aa5 100644 --- a/test/test_api_response_security_stochastic_oscillator.py +++ b/test/test_api_response_security_stochastic_oscillator.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_stock_price_adjustments.py b/test/test_api_response_security_stock_price_adjustments.py index 5bb845a7..f360563d 100644 --- a/test/test_api_response_security_stock_price_adjustments.py +++ b/test/test_api_response_security_stock_price_adjustments.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_stock_prices.py b/test/test_api_response_security_stock_prices.py index 94547360..c80e9d6f 100644 --- a/test/test_api_response_security_stock_prices.py +++ b/test/test_api_response_security_stock_prices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_triple_exponential_average.py b/test/test_api_response_security_triple_exponential_average.py index 0c23afb6..b997bee5 100644 --- a/test/test_api_response_security_triple_exponential_average.py +++ b/test/test_api_response_security_triple_exponential_average.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_true_strength_index.py b/test/test_api_response_security_true_strength_index.py index a81a9064..e44a564c 100644 --- a/test/test_api_response_security_true_strength_index.py +++ b/test/test_api_response_security_true_strength_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_ultimate_oscillator.py b/test/test_api_response_security_ultimate_oscillator.py index 5b86584a..35c5fcf6 100644 --- a/test/test_api_response_security_ultimate_oscillator.py +++ b/test/test_api_response_security_ultimate_oscillator.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_volume_price_trend.py b/test/test_api_response_security_volume_price_trend.py index edb3ab7a..309efed0 100644 --- a/test/test_api_response_security_volume_price_trend.py +++ b/test/test_api_response_security_volume_price_trend.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_volume_weighted_average_price.py b/test/test_api_response_security_volume_weighted_average_price.py index 2aad7c33..277623df 100644 --- a/test/test_api_response_security_volume_weighted_average_price.py +++ b/test/test_api_response_security_volume_weighted_average_price.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_vortex_indicator.py b/test/test_api_response_security_vortex_indicator.py index e1ae9d1d..7add7439 100644 --- a/test/test_api_response_security_vortex_indicator.py +++ b/test/test_api_response_security_vortex_indicator.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_williams_r.py b/test/test_api_response_security_williams_r.py index 071e9b10..8d9793b8 100644 --- a/test/test_api_response_security_williams_r.py +++ b/test/test_api_response_security_williams_r.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_zacks_analyst_ratings.py b/test/test_api_response_security_zacks_analyst_ratings.py index 8d16b0e4..bfdde246 100644 --- a/test/test_api_response_security_zacks_analyst_ratings.py +++ b/test/test_api_response_security_zacks_analyst_ratings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_zacks_analyst_ratings_snapshot.py b/test/test_api_response_security_zacks_analyst_ratings_snapshot.py index 83911230..86a16ff0 100644 --- a/test/test_api_response_security_zacks_analyst_ratings_snapshot.py +++ b/test/test_api_response_security_zacks_analyst_ratings_snapshot.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_zacks_eps_surprises.py b/test/test_api_response_security_zacks_eps_surprises.py index 4b764cd5..8af894f6 100644 --- a/test/test_api_response_security_zacks_eps_surprises.py +++ b/test/test_api_response_security_zacks_eps_surprises.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_security_zacks_sales_surprises.py b/test/test_api_response_security_zacks_sales_surprises.py index 2f6a6247..16fbe034 100644 --- a/test/test_api_response_security_zacks_sales_surprises.py +++ b/test/test_api_response_security_zacks_sales_surprises.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_sic_index_historical_data.py b/test/test_api_response_sic_index_historical_data.py index 41b0260d..1cee1006 100644 --- a/test/test_api_response_sic_index_historical_data.py +++ b/test/test_api_response_sic_index_historical_data.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_sic_indices.py b/test/test_api_response_sic_indices.py index 61dd421d..c3dd7441 100644 --- a/test/test_api_response_sic_indices.py +++ b/test/test_api_response_sic_indices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_sic_indices_search.py b/test/test_api_response_sic_indices_search.py index a5c915b0..ff738698 100644 --- a/test/test_api_response_sic_indices_search.py +++ b/test/test_api_response_sic_indices_search.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_standardized_financials.py b/test/test_api_response_standardized_financials.py index 7d825ae5..00d822ab 100644 --- a/test/test_api_response_standardized_financials.py +++ b/test/test_api_response_standardized_financials.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_standardized_financials_dimensions.py b/test/test_api_response_standardized_financials_dimensions.py index 67ecbf60..4803e348 100644 --- a/test/test_api_response_standardized_financials_dimensions.py +++ b/test/test_api_response_standardized_financials_dimensions.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_stock_exchange_realtime_stock_prices.py b/test/test_api_response_stock_exchange_realtime_stock_prices.py index 43c7f530..1d0a4ec0 100644 --- a/test/test_api_response_stock_exchange_realtime_stock_prices.py +++ b/test/test_api_response_stock_exchange_realtime_stock_prices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_stock_exchange_securities.py b/test/test_api_response_stock_exchange_securities.py index 3934ebc9..b689d440 100644 --- a/test/test_api_response_stock_exchange_securities.py +++ b/test/test_api_response_stock_exchange_securities.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_stock_exchange_stock_price_adjustments.py b/test/test_api_response_stock_exchange_stock_price_adjustments.py index 79775641..80b68d81 100644 --- a/test/test_api_response_stock_exchange_stock_price_adjustments.py +++ b/test/test_api_response_stock_exchange_stock_price_adjustments.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_stock_exchange_stock_prices.py b/test/test_api_response_stock_exchange_stock_prices.py index 6b43ff7f..627c6894 100644 --- a/test/test_api_response_stock_exchange_stock_prices.py +++ b/test/test_api_response_stock_exchange_stock_prices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_stock_exchanges.py b/test/test_api_response_stock_exchanges.py index 8f929104..21505135 100644 --- a/test/test_api_response_stock_exchanges.py +++ b/test/test_api_response_stock_exchanges.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_stock_market_index_historical_data.py b/test/test_api_response_stock_market_index_historical_data.py index c43b1651..39790a14 100644 --- a/test/test_api_response_stock_market_index_historical_data.py +++ b/test/test_api_response_stock_market_index_historical_data.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_stock_market_indices.py b/test/test_api_response_stock_market_indices.py index 33c4bbdc..abe39327 100644 --- a/test/test_api_response_stock_market_indices.py +++ b/test/test_api_response_stock_market_indices.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_stock_market_indices_search.py b/test/test_api_response_stock_market_indices_search.py index 4b717a7d..7e848627 100644 --- a/test/test_api_response_stock_market_indices_search.py +++ b/test/test_api_response_stock_market_indices_search.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_zacks_analyst_ratings.py b/test/test_api_response_zacks_analyst_ratings.py index c5852b94..57cebc5c 100644 --- a/test/test_api_response_zacks_analyst_ratings.py +++ b/test/test_api_response_zacks_analyst_ratings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_zacks_ebitda_consensus.py b/test/test_api_response_zacks_ebitda_consensus.py index f3e15262..351812fe 100644 --- a/test/test_api_response_zacks_ebitda_consensus.py +++ b/test/test_api_response_zacks_ebitda_consensus.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_zacks_eps_estimates.py b/test/test_api_response_zacks_eps_estimates.py index a4fc1806..709f3525 100644 --- a/test/test_api_response_zacks_eps_estimates.py +++ b/test/test_api_response_zacks_eps_estimates.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_zacks_eps_growth_rates.py b/test/test_api_response_zacks_eps_growth_rates.py index 25035a68..6fe7285c 100644 --- a/test/test_api_response_zacks_eps_growth_rates.py +++ b/test/test_api_response_zacks_eps_growth_rates.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_zacks_eps_surprises.py b/test/test_api_response_zacks_eps_surprises.py index 1bfcbb72..0c8b7f61 100644 --- a/test/test_api_response_zacks_eps_surprises.py +++ b/test/test_api_response_zacks_eps_surprises.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_zacks_etf_holdings.py b/test/test_api_response_zacks_etf_holdings.py index 1fe3c3fe..8a843e7c 100644 --- a/test/test_api_response_zacks_etf_holdings.py +++ b/test/test_api_response_zacks_etf_holdings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_zacks_forward_p_es.py b/test/test_api_response_zacks_forward_p_es.py index b25ccd96..d11fbc97 100644 --- a/test/test_api_response_zacks_forward_p_es.py +++ b/test/test_api_response_zacks_forward_p_es.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_zacks_institutional_holding_companies.py b/test/test_api_response_zacks_institutional_holding_companies.py index fee869b1..65ed7623 100644 --- a/test/test_api_response_zacks_institutional_holding_companies.py +++ b/test/test_api_response_zacks_institutional_holding_companies.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_zacks_institutional_holding_owners.py b/test/test_api_response_zacks_institutional_holding_owners.py index 6f0b3595..7bb7bd61 100644 --- a/test/test_api_response_zacks_institutional_holding_owners.py +++ b/test/test_api_response_zacks_institutional_holding_owners.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_zacks_institutional_holdings.py b/test/test_api_response_zacks_institutional_holdings.py index fc124d90..74e4798f 100644 --- a/test/test_api_response_zacks_institutional_holdings.py +++ b/test/test_api_response_zacks_institutional_holdings.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_zacks_long_term_growth_rates.py b/test/test_api_response_zacks_long_term_growth_rates.py index fab0eb4e..307c7def 100644 --- a/test/test_api_response_zacks_long_term_growth_rates.py +++ b/test/test_api_response_zacks_long_term_growth_rates.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_zacks_sales_estimates.py b/test/test_api_response_zacks_sales_estimates.py index d92bbda9..34cd2cd9 100644 --- a/test/test_api_response_zacks_sales_estimates.py +++ b/test/test_api_response_zacks_sales_estimates.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_zacks_sales_surprises.py b/test/test_api_response_zacks_sales_surprises.py index e9425aeb..00b40ee2 100644 --- a/test/test_api_response_zacks_sales_surprises.py +++ b/test/test_api_response_zacks_sales_surprises.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_api_response_zacks_target_price_consensuses.py b/test/test_api_response_zacks_target_price_consensuses.py index c976579c..6e944768 100644 --- a/test/test_api_response_zacks_target_price_consensuses.py +++ b/test/test_api_response_zacks_target_price_consensuses.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_average_daily_trading_volume_technical_value.py b/test/test_average_daily_trading_volume_technical_value.py index 2cbc356c..26eb1396 100644 --- a/test/test_average_daily_trading_volume_technical_value.py +++ b/test/test_average_daily_trading_volume_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_average_directional_index_technical_value.py b/test/test_average_directional_index_technical_value.py index 59783b7b..bbbc5485 100644 --- a/test/test_average_directional_index_technical_value.py +++ b/test/test_average_directional_index_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_average_true_range_technical_value.py b/test/test_average_true_range_technical_value.py index 1322d057..01d5a452 100644 --- a/test/test_average_true_range_technical_value.py +++ b/test/test_average_true_range_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_awesome_oscillator_technical_value.py b/test/test_awesome_oscillator_technical_value.py index 23b5fb8d..f5601991 100644 --- a/test/test_awesome_oscillator_technical_value.py +++ b/test/test_awesome_oscillator_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_bollinger_bands_technical_value.py b/test/test_bollinger_bands_technical_value.py index fa52071f..ef9ef5c5 100644 --- a/test/test_bollinger_bands_technical_value.py +++ b/test/test_bollinger_bands_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_bulk_download_links.py b/test/test_bulk_download_links.py index bc1b934b..2ab5ed6a 100644 --- a/test/test_bulk_download_links.py +++ b/test/test_bulk_download_links.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_bulk_download_summary.py b/test/test_bulk_download_summary.py index 3374df35..5f4078b2 100644 --- a/test/test_bulk_download_summary.py +++ b/test/test_bulk_download_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_bulk_downloads_api.py b/test/test_bulk_downloads_api.py index b17cec2d..930e1c4e 100644 --- a/test/test_bulk_downloads_api.py +++ b/test/test_bulk_downloads_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_chaikin_money_flow_technical_value.py b/test/test_chaikin_money_flow_technical_value.py index 678731be..93a7a1a3 100644 --- a/test/test_chaikin_money_flow_technical_value.py +++ b/test/test_chaikin_money_flow_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_commodity_channel_index_technical_value.py b/test/test_commodity_channel_index_technical_value.py index 900dc3a5..9ae3b106 100644 --- a/test/test_commodity_channel_index_technical_value.py +++ b/test/test_commodity_channel_index_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_company.py b/test/test_company.py index a1bf3c8f..75e98a32 100644 --- a/test/test_company.py +++ b/test/test_company.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_company_api.py b/test/test_company_api.py index ad8ff05c..8a0e7266 100644 --- a/test/test_company_api.py +++ b/test/test_company_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_company_daily_metric.py b/test/test_company_daily_metric.py index d6659e6f..9966af26 100644 --- a/test/test_company_daily_metric.py +++ b/test/test_company_daily_metric.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_company_filing.py b/test/test_company_filing.py index 808f5b88..9964362c 100644 --- a/test/test_company_filing.py +++ b/test/test_company_filing.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_company_initial_public_offering.py b/test/test_company_initial_public_offering.py index 7392ffdb..394d3db2 100644 --- a/test/test_company_initial_public_offering.py +++ b/test/test_company_initial_public_offering.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_company_news.py b/test/test_company_news.py index d486c0ec..3d4258ba 100644 --- a/test/test_company_news.py +++ b/test/test_company_news.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_company_news_summary.py b/test/test_company_news_summary.py index 75f887ca..d01150b1 100644 --- a/test/test_company_news_summary.py +++ b/test/test_company_news_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_company_public_float.py b/test/test_company_public_float.py index 194d60f1..2aa7e956 100644 --- a/test/test_company_public_float.py +++ b/test/test_company_public_float.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_company_shares_outstanding.py b/test/test_company_shares_outstanding.py index 88d6c740..bc30d21f 100644 --- a/test/test_company_shares_outstanding.py +++ b/test/test_company_shares_outstanding.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_company_summary.py b/test/test_company_summary.py index b750a82d..579a0bd8 100644 --- a/test/test_company_summary.py +++ b/test/test_company_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_data_point_api.py b/test/test_data_point_api.py index a78e5be4..7a420787 100644 --- a/test/test_data_point_api.py +++ b/test/test_data_point_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_data_tag.py b/test/test_data_tag.py index ce46b5d2..500aeacc 100644 --- a/test/test_data_tag.py +++ b/test/test_data_tag.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_data_tag_api.py b/test/test_data_tag_api.py index 9eb20339..9331946f 100644 --- a/test/test_data_tag_api.py +++ b/test/test_data_tag_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_data_tag_summary.py b/test/test_data_tag_summary.py index ed21474a..9e3a047f 100644 --- a/test/test_data_tag_summary.py +++ b/test/test_data_tag_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_detrended_price_oscillator_technical_value.py b/test/test_detrended_price_oscillator_technical_value.py index cb5193b6..efce9907 100644 --- a/test/test_detrended_price_oscillator_technical_value.py +++ b/test/test_detrended_price_oscillator_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_dividend_record.py b/test/test_dividend_record.py index e3d9a60d..6e43ef30 100644 --- a/test/test_dividend_record.py +++ b/test/test_dividend_record.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_donchian_channel_technical_value.py b/test/test_donchian_channel_technical_value.py index 5a8f4f7b..dccbf0aa 100644 --- a/test/test_donchian_channel_technical_value.py +++ b/test/test_donchian_channel_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_earnings_record.py b/test/test_earnings_record.py index e0f6e71e..91fbee9a 100644 --- a/test/test_earnings_record.py +++ b/test/test_earnings_record.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_ease_of_movement_technical_value.py b/test/test_ease_of_movement_technical_value.py index 14984d4d..1e8c1937 100644 --- a/test/test_ease_of_movement_technical_value.py +++ b/test/test_ease_of_movement_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_economic_index.py b/test/test_economic_index.py index b0c9348d..9469ecab 100644 --- a/test/test_economic_index.py +++ b/test/test_economic_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_economic_index_summary.py b/test/test_economic_index_summary.py index fa32b316..7503fcc8 100644 --- a/test/test_economic_index_summary.py +++ b/test/test_economic_index_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_eod_index_price.py b/test/test_eod_index_price.py index 88abb749..75cc0b8f 100644 --- a/test/test_eod_index_price.py +++ b/test/test_eod_index_price.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_eod_index_price_summary.py b/test/test_eod_index_price_summary.py index 5699fb36..5cd3b00a 100644 --- a/test/test_eod_index_price_summary.py +++ b/test/test_eod_index_price_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_esg_api.py b/test/test_esg_api.py index bc2613f4..b468c9f3 100644 --- a/test/test_esg_api.py +++ b/test/test_esg_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_esg_company_summary.py b/test/test_esg_company_summary.py index 903f1d52..685a4245 100644 --- a/test/test_esg_company_summary.py +++ b/test/test_esg_company_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_esg_comprehensive_rating.py b/test/test_esg_comprehensive_rating.py index c02bcf32..2de1d55b 100644 --- a/test/test_esg_comprehensive_rating.py +++ b/test/test_esg_comprehensive_rating.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_esg_comprehensive_rating_with_company.py b/test/test_esg_comprehensive_rating_with_company.py index 6498ce04..190a3887 100644 --- a/test/test_esg_comprehensive_rating_with_company.py +++ b/test/test_esg_comprehensive_rating_with_company.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_esg_rating.py b/test/test_esg_rating.py index 646606ce..9515cec1 100644 --- a/test/test_esg_rating.py +++ b/test/test_esg_rating.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_esg_rating_with_company.py b/test/test_esg_rating_with_company.py index 07368c67..385257d3 100644 --- a/test/test_esg_rating_with_company.py +++ b/test/test_esg_rating_with_company.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_et_fs_api.py b/test/test_et_fs_api.py index f54753b4..3afd8b51 100644 --- a/test/test_et_fs_api.py +++ b/test/test_et_fs_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_etf.py b/test/test_etf.py index 67edf493..0c9628a9 100644 --- a/test/test_etf.py +++ b/test/test_etf.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_etf_analytics.py b/test/test_etf_analytics.py index 93a7bf83..a5f5b843 100644 --- a/test/test_etf_analytics.py +++ b/test/test_etf_analytics.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_etf_holding.py b/test/test_etf_holding.py index dc7f20d6..725588a2 100644 --- a/test/test_etf_holding.py +++ b/test/test_etf_holding.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_etf_stats.py b/test/test_etf_stats.py index f6845763..31490ee4 100644 --- a/test/test_etf_stats.py +++ b/test/test_etf_stats.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_etf_summary.py b/test/test_etf_summary.py index cf2fcad2..7021626b 100644 --- a/test/test_etf_summary.py +++ b/test/test_etf_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_filing.py b/test/test_filing.py index 2868dc94..71cc43c9 100644 --- a/test/test_filing.py +++ b/test/test_filing.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_filing_api.py b/test/test_filing_api.py index 9ae79a21..4d0819ec 100644 --- a/test/test_filing_api.py +++ b/test/test_filing_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_filing_note.py b/test/test_filing_note.py index 37f13912..8985494e 100644 --- a/test/test_filing_note.py +++ b/test/test_filing_note.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_filing_note_filing.py b/test/test_filing_note_filing.py index 234097a5..9368ec12 100644 --- a/test/test_filing_note_filing.py +++ b/test/test_filing_note_filing.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_filing_note_summary.py b/test/test_filing_note_summary.py index 9176178d..9920619e 100644 --- a/test/test_filing_note_summary.py +++ b/test/test_filing_note_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_filing_summary.py b/test/test_filing_summary.py index ae91a2ac..bb66c04d 100644 --- a/test/test_filing_summary.py +++ b/test/test_filing_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_force_index_technical_value.py b/test/test_force_index_technical_value.py index dc54b4d9..45f08fe3 100644 --- a/test/test_force_index_technical_value.py +++ b/test/test_force_index_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_forex_api.py b/test/test_forex_api.py index 00d4ac30..4e7b9faa 100644 --- a/test/test_forex_api.py +++ b/test/test_forex_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_forex_currency.py b/test/test_forex_currency.py index 5c263a79..ab6b586c 100644 --- a/test/test_forex_currency.py +++ b/test/test_forex_currency.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_forex_pair.py b/test/test_forex_pair.py index 056f1e96..34540a01 100644 --- a/test/test_forex_pair.py +++ b/test/test_forex_pair.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_forex_price.py b/test/test_forex_price.py index eb2a90bf..b1a45ecf 100644 --- a/test/test_forex_price.py +++ b/test/test_forex_price.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_fundamental.py b/test/test_fundamental.py index c7a5e6a1..04ac04f7 100644 --- a/test/test_fundamental.py +++ b/test/test_fundamental.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_fundamental_summary.py b/test/test_fundamental_summary.py index 303a32b1..f20ac983 100644 --- a/test/test_fundamental_summary.py +++ b/test/test_fundamental_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_fundamentals_api.py b/test/test_fundamentals_api.py index 6244c952..554757cd 100644 --- a/test/test_fundamentals_api.py +++ b/test/test_fundamentals_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_historical_data.py b/test/test_historical_data.py index 290f7857..08ff261c 100644 --- a/test/test_historical_data.py +++ b/test/test_historical_data.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_historical_data_api.py b/test/test_historical_data_api.py index fa3ee976..6c9775d9 100644 --- a/test/test_historical_data_api.py +++ b/test/test_historical_data_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_ichimoku_kinko_hyo_technical_value.py b/test/test_ichimoku_kinko_hyo_technical_value.py index bef2c65c..e7d1b54f 100644 --- a/test/test_ichimoku_kinko_hyo_technical_value.py +++ b/test/test_ichimoku_kinko_hyo_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_index_api.py b/test/test_index_api.py index 04d8e95f..6478b1e2 100644 --- a/test/test_index_api.py +++ b/test/test_index_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_insider_transaction.py b/test/test_insider_transaction.py index 57a6c2c0..4a55bde4 100644 --- a/test/test_insider_transaction.py +++ b/test/test_insider_transaction.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_insider_transaction_filing.py b/test/test_insider_transaction_filing.py index d2f8bfc5..5129c71a 100644 --- a/test/test_insider_transaction_filing.py +++ b/test/test_insider_transaction_filing.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_insider_transaction_filings_api.py b/test/test_insider_transaction_filings_api.py index e81f7420..e3fb71bb 100644 --- a/test/test_insider_transaction_filings_api.py +++ b/test/test_insider_transaction_filings_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_institutional_holding.py b/test/test_institutional_holding.py index b6c95da3..1e262f50 100644 --- a/test/test_institutional_holding.py +++ b/test/test_institutional_holding.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_institutional_ownership.py b/test/test_institutional_ownership.py index 56ba4004..e8d185da 100644 --- a/test/test_institutional_ownership.py +++ b/test/test_institutional_ownership.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_intraday_stock_price.py b/test/test_intraday_stock_price.py index 2c83a931..95ec6021 100644 --- a/test/test_intraday_stock_price.py +++ b/test/test_intraday_stock_price.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_keltner_channel_technical_value.py b/test/test_keltner_channel_technical_value.py index 2bac2187..0df9dba1 100644 --- a/test/test_keltner_channel_technical_value.py +++ b/test/test_keltner_channel_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_know_sure_thing_technical_value.py b/test/test_know_sure_thing_technical_value.py index 6aa87234..9c3cdc59 100644 --- a/test/test_know_sure_thing_technical_value.py +++ b/test/test_know_sure_thing_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_market_api.py b/test/test_market_api.py index e0ff03ec..c3b876e0 100644 --- a/test/test_market_api.py +++ b/test/test_market_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_market_status_result.py b/test/test_market_status_result.py index 3499583c..b68979df 100644 --- a/test/test_market_status_result.py +++ b/test/test_market_status_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_mass_index_technical_value.py b/test/test_mass_index_technical_value.py index 9477e86a..bf8f9f0b 100644 --- a/test/test_mass_index_technical_value.py +++ b/test/test_mass_index_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_money_flow_index_technical_value.py b/test/test_money_flow_index_technical_value.py index 5b0c85c8..f069c49e 100644 --- a/test/test_money_flow_index_technical_value.py +++ b/test/test_money_flow_index_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_moving_average_convergence_divergence_technical_value.py b/test/test_moving_average_convergence_divergence_technical_value.py index 0f4d3a2f..4684e917 100644 --- a/test/test_moving_average_convergence_divergence_technical_value.py +++ b/test/test_moving_average_convergence_divergence_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_municipality.py b/test/test_municipality.py index ff414367..72c9bc20 100644 --- a/test/test_municipality.py +++ b/test/test_municipality.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_municipality_api.py b/test/test_municipality_api.py index c69e124b..bad9d2ab 100644 --- a/test/test_municipality_api.py +++ b/test/test_municipality_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_municipality_financial.py b/test/test_municipality_financial.py index ef890d9f..37d9be59 100644 --- a/test/test_municipality_financial.py +++ b/test/test_municipality_financial.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_negative_volume_index_technical_value.py b/test/test_negative_volume_index_technical_value.py index 2215903d..43da5044 100644 --- a/test/test_negative_volume_index_technical_value.py +++ b/test/test_negative_volume_index_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_news_topic.py b/test/test_news_topic.py index e4f9c789..a75718af 100644 --- a/test/test_news_topic.py +++ b/test/test_news_topic.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_on_balance_volume_mean_technical_value.py b/test/test_on_balance_volume_mean_technical_value.py index c11217f1..166512ae 100644 --- a/test/test_on_balance_volume_mean_technical_value.py +++ b/test/test_on_balance_volume_mean_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_on_balance_volume_technical_value.py b/test/test_on_balance_volume_technical_value.py index ac34584a..adf3e3b4 100644 --- a/test/test_on_balance_volume_technical_value.py +++ b/test/test_on_balance_volume_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_option.py b/test/test_option.py index da30c384..4ebdf657 100644 --- a/test/test_option.py +++ b/test/test_option.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_option_chain.py b/test/test_option_chain.py index b16c460d..a7912427 100644 --- a/test/test_option_chain.py +++ b/test/test_option_chain.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_option_chain_eod.py b/test/test_option_chain_eod.py index 1630a47a..519e3c7a 100644 --- a/test/test_option_chain_eod.py +++ b/test/test_option_chain_eod.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_option_chain_realtime.py b/test/test_option_chain_realtime.py index 74c810ad..62469ea6 100644 --- a/test/test_option_chain_realtime.py +++ b/test/test_option_chain_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_option_contracts_list.py b/test/test_option_contracts_list.py index 1eca5fe2..cd97c8bc 100644 --- a/test/test_option_contracts_list.py +++ b/test/test_option_contracts_list.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_option_eod.py b/test/test_option_eod.py index 7c9e4a0c..ee8f587b 100644 --- a/test/test_option_eod.py +++ b/test/test_option_eod.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_option_factors_realtime.py b/test/test_option_factors_realtime.py index f8016f7b..369a646f 100644 --- a/test/test_option_factors_realtime.py +++ b/test/test_option_factors_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_option_interval.py b/test/test_option_interval.py index a498f943..53b51c75 100644 --- a/test/test_option_interval.py +++ b/test/test_option_interval.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_option_interval_mover.py b/test/test_option_interval_mover.py index dea6d6b2..f7c694d0 100644 --- a/test/test_option_interval_mover.py +++ b/test/test_option_interval_mover.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_option_intervals_movers_result.py b/test/test_option_intervals_movers_result.py index e873f15d..d9b42580 100644 --- a/test/test_option_intervals_movers_result.py +++ b/test/test_option_intervals_movers_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_option_intervals_result.py b/test/test_option_intervals_result.py index 6fc2b86c..a5a31271 100644 --- a/test/test_option_intervals_result.py +++ b/test/test_option_intervals_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_option_price.py b/test/test_option_price.py index c3a5c896..ff23ed4c 100644 --- a/test/test_option_price.py +++ b/test/test_option_price.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_option_price_batch_realtime.py b/test/test_option_price_batch_realtime.py index f07c265d..a7817735 100644 --- a/test/test_option_price_batch_realtime.py +++ b/test/test_option_price_batch_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_option_price_eod.py b/test/test_option_price_eod.py index ad655299..f09bdcc6 100644 --- a/test/test_option_price_eod.py +++ b/test/test_option_price_eod.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_option_price_realtime.py b/test/test_option_price_realtime.py index 58fe1d0c..4623f245 100644 --- a/test/test_option_price_realtime.py +++ b/test/test_option_price_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_option_price_realtime_extended.py b/test/test_option_price_realtime_extended.py index 11e58abf..21ec652d 100644 --- a/test/test_option_price_realtime_extended.py +++ b/test/test_option_price_realtime_extended.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_option_realtime.py b/test/test_option_realtime.py index c94ce249..9cb2636a 100644 --- a/test/test_option_realtime.py +++ b/test/test_option_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_option_snapshot_group.py b/test/test_option_snapshot_group.py index 52b2f420..5f24924c 100644 --- a/test/test_option_snapshot_group.py +++ b/test/test_option_snapshot_group.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_option_snapshots_result.py b/test/test_option_snapshots_result.py index 7159da71..8b4891a1 100644 --- a/test/test_option_snapshots_result.py +++ b/test/test_option_snapshots_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_option_stats_realtime.py b/test/test_option_stats_realtime.py index 634c97dd..34d5f6e4 100644 --- a/test/test_option_stats_realtime.py +++ b/test/test_option_stats_realtime.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_option_unusual_trade.py b/test/test_option_unusual_trade.py index d6939f1e..753f9a98 100644 --- a/test/test_option_unusual_trade.py +++ b/test/test_option_unusual_trade.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_options_aggregate.py b/test/test_options_aggregate.py index 371cdf30..1b2a5a02 100644 --- a/test/test_options_aggregate.py +++ b/test/test_options_aggregate.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_options_api.py b/test/test_options_api.py index 1e3f1bce..029116cb 100644 --- a/test/test_options_api.py +++ b/test/test_options_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_owner.py b/test/test_owner.py index adb14088..6d27d147 100644 --- a/test/test_owner.py +++ b/test/test_owner.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_owner_summary.py b/test/test_owner_summary.py index 9b063ba1..6f85efa3 100644 --- a/test/test_owner_summary.py +++ b/test/test_owner_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_owners_api.py b/test/test_owners_api.py index dc38b3e2..8b98379d 100644 --- a/test/test_owners_api.py +++ b/test/test_owners_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_realtime_index_price.py b/test/test_realtime_index_price.py index a4e554fa..e76890dc 100644 --- a/test/test_realtime_index_price.py +++ b/test/test_realtime_index_price.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_realtime_index_price_index.py b/test/test_realtime_index_price_index.py index 5c5545c3..37ed3b59 100644 --- a/test/test_realtime_index_price_index.py +++ b/test/test_realtime_index_price_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_realtime_stock_price.py b/test/test_realtime_stock_price.py index 7eb54927..9a7f31f9 100644 --- a/test/test_realtime_stock_price.py +++ b/test/test_realtime_stock_price.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_realtime_stock_price_security.py b/test/test_realtime_stock_price_security.py index f8f34f11..4daf38ec 100644 --- a/test/test_realtime_stock_price_security.py +++ b/test/test_realtime_stock_price_security.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_relative_strength_index_technical_value.py b/test/test_relative_strength_index_technical_value.py index 11c98159..46d2d100 100644 --- a/test/test_relative_strength_index_technical_value.py +++ b/test/test_relative_strength_index_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_reported_financial.py b/test/test_reported_financial.py index 6fe23367..6c03101e 100644 --- a/test/test_reported_financial.py +++ b/test/test_reported_financial.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_reported_financial_dimension.py b/test/test_reported_financial_dimension.py index 4cf9728f..14c24fb1 100644 --- a/test/test_reported_financial_dimension.py +++ b/test/test_reported_financial_dimension.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_reported_tag.py b/test/test_reported_tag.py index d45f7d40..cfdb5d6b 100644 --- a/test/test_reported_tag.py +++ b/test/test_reported_tag.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_security.py b/test/test_security.py index ac727736..d9d8b086 100644 --- a/test/test_security.py +++ b/test/test_security.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_security_api.py b/test/test_security_api.py index 71fd14c2..160f4c1b 100644 --- a/test/test_security_api.py +++ b/test/test_security_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_security_history.py b/test/test_security_history.py index 3e3b4005..d926b68c 100644 --- a/test/test_security_history.py +++ b/test/test_security_history.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_security_history_list_result.py b/test/test_security_history_list_result.py index dfef58b2..2e134a1d 100644 --- a/test/test_security_history_list_result.py +++ b/test/test_security_history_list_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_security_interval_mover.py b/test/test_security_interval_mover.py index 4cb0b2e6..92d7dc86 100644 --- a/test/test_security_interval_mover.py +++ b/test/test_security_interval_mover.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_security_intervals_movers_result.py b/test/test_security_intervals_movers_result.py index 66b7f4ad..c8cc76ee 100644 --- a/test/test_security_intervals_movers_result.py +++ b/test/test_security_intervals_movers_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_security_replay_file_result.py b/test/test_security_replay_file_result.py index a08da9e5..80c4b49b 100644 --- a/test/test_security_replay_file_result.py +++ b/test/test_security_replay_file_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_security_screen_clause.py b/test/test_security_screen_clause.py index 37348497..b325f8f2 100644 --- a/test/test_security_screen_clause.py +++ b/test/test_security_screen_clause.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_security_screen_group.py b/test/test_security_screen_group.py index edb3955a..15320b30 100644 --- a/test/test_security_screen_group.py +++ b/test/test_security_screen_group.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_security_screen_result.py b/test/test_security_screen_result.py index b99d55c7..6dc10a59 100644 --- a/test/test_security_screen_result.py +++ b/test/test_security_screen_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_security_screen_result_data.py b/test/test_security_screen_result_data.py index 9d6e652b..04675c48 100644 --- a/test/test_security_screen_result_data.py +++ b/test/test_security_screen_result_data.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_security_snapshot_group.py b/test/test_security_snapshot_group.py index 8299f701..f056a11c 100644 --- a/test/test_security_snapshot_group.py +++ b/test/test_security_snapshot_group.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_security_snapshots_result.py b/test/test_security_snapshots_result.py index 90688ce6..beb629f4 100644 --- a/test/test_security_snapshots_result.py +++ b/test/test_security_snapshots_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_security_summary.py b/test/test_security_summary.py index ee9b0736..d6f9cf29 100644 --- a/test/test_security_summary.py +++ b/test/test_security_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_security_trades.py b/test/test_security_trades.py index ff7f343f..02a2b763 100644 --- a/test/test_security_trades.py +++ b/test/test_security_trades.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_security_trades_result.py b/test/test_security_trades_result.py index 20239242..ee2b6be4 100644 --- a/test/test_security_trades_result.py +++ b/test/test_security_trades_result.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_sic_index.py b/test/test_sic_index.py index 747ab18a..c3afaba2 100644 --- a/test/test_sic_index.py +++ b/test/test_sic_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_simple_moving_average_technical_value.py b/test/test_simple_moving_average_technical_value.py index a7c9806f..dec075ec 100644 --- a/test/test_simple_moving_average_technical_value.py +++ b/test/test_simple_moving_average_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_standardized_financial.py b/test/test_standardized_financial.py index 9641b1da..aa3477f9 100644 --- a/test/test_standardized_financial.py +++ b/test/test_standardized_financial.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_standardized_financials_dimension.py b/test/test_standardized_financials_dimension.py index f1216935..558a3840 100644 --- a/test/test_standardized_financials_dimension.py +++ b/test/test_standardized_financials_dimension.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_stochastic_oscillator_technical_value.py b/test/test_stochastic_oscillator_technical_value.py index 3139a64a..16d4504d 100644 --- a/test/test_stochastic_oscillator_technical_value.py +++ b/test/test_stochastic_oscillator_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_stock_exchange.py b/test/test_stock_exchange.py index 7d3319ad..4d635253 100644 --- a/test/test_stock_exchange.py +++ b/test/test_stock_exchange.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_stock_exchange_api.py b/test/test_stock_exchange_api.py index 87da28bb..005840f8 100644 --- a/test/test_stock_exchange_api.py +++ b/test/test_stock_exchange_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_stock_market_index.py b/test/test_stock_market_index.py index 8db733f1..998bad6e 100644 --- a/test/test_stock_market_index.py +++ b/test/test_stock_market_index.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_stock_market_index_summary.py b/test/test_stock_market_index_summary.py index 841c83bf..55b7561d 100644 --- a/test/test_stock_market_index_summary.py +++ b/test/test_stock_market_index_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_stock_price.py b/test/test_stock_price.py index e5d337d6..590ecb09 100644 --- a/test/test_stock_price.py +++ b/test/test_stock_price.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_stock_price_adjustment.py b/test/test_stock_price_adjustment.py index 2e86b0cb..00f41d7e 100644 --- a/test/test_stock_price_adjustment.py +++ b/test/test_stock_price_adjustment.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_stock_price_adjustment_summary.py b/test/test_stock_price_adjustment_summary.py index fe38ba0d..bbb028f9 100644 --- a/test/test_stock_price_adjustment_summary.py +++ b/test/test_stock_price_adjustment_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_stock_price_interval.py b/test/test_stock_price_interval.py index 53e25bf8..bffd6a6a 100644 --- a/test/test_stock_price_interval.py +++ b/test/test_stock_price_interval.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_stock_price_summary.py b/test/test_stock_price_summary.py index 9072e48f..f36dabda 100644 --- a/test/test_stock_price_summary.py +++ b/test/test_stock_price_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_technical_api.py b/test/test_technical_api.py index 2b599e34..aa082728 100644 --- a/test/test_technical_api.py +++ b/test/test_technical_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_technical_indicator.py b/test/test_technical_indicator.py index 76716d93..33d79652 100644 --- a/test/test_technical_indicator.py +++ b/test/test_technical_indicator.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_thea_entity_answer.py b/test/test_thea_entity_answer.py index 05d9d176..fd27f749 100644 --- a/test/test_thea_entity_answer.py +++ b/test/test_thea_entity_answer.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_thea_source_document.py b/test/test_thea_source_document.py index c6613246..17092d57 100644 --- a/test/test_thea_source_document.py +++ b/test/test_thea_source_document.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_triple_exponential_average_technical_value.py b/test/test_triple_exponential_average_technical_value.py index 51a657d6..c5ba24f6 100644 --- a/test/test_triple_exponential_average_technical_value.py +++ b/test/test_triple_exponential_average_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_true_strength_index_technical_value.py b/test/test_true_strength_index_technical_value.py index 2e81b21f..6fdb4f75 100644 --- a/test/test_true_strength_index_technical_value.py +++ b/test/test_true_strength_index_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_ultimate_oscillator_technical_value.py b/test/test_ultimate_oscillator_technical_value.py index 53e962eb..d589c54a 100644 --- a/test/test_ultimate_oscillator_technical_value.py +++ b/test/test_ultimate_oscillator_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_volume_price_trend_technical_value.py b/test/test_volume_price_trend_technical_value.py index 8f968fdd..468be3f2 100644 --- a/test/test_volume_price_trend_technical_value.py +++ b/test/test_volume_price_trend_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_volume_weighted_average_price_value.py b/test/test_volume_weighted_average_price_value.py index 45d2a19e..53940299 100644 --- a/test/test_volume_weighted_average_price_value.py +++ b/test/test_volume_weighted_average_price_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_vortex_indicator_technical_value.py b/test/test_vortex_indicator_technical_value.py index e2bb2242..67889690 100644 --- a/test/test_vortex_indicator_technical_value.py +++ b/test/test_vortex_indicator_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_williams_r_technical_value.py b/test/test_williams_r_technical_value.py index 479bb3ed..29555365 100644 --- a/test/test_williams_r_technical_value.py +++ b/test/test_williams_r_technical_value.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_analyst_rating.py b/test/test_zacks_analyst_rating.py index 86d62c05..b01aff3c 100644 --- a/test/test_zacks_analyst_rating.py +++ b/test/test_zacks_analyst_rating.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_analyst_rating_snapshot.py b/test/test_zacks_analyst_rating_snapshot.py index ad8fe079..163b0ab0 100644 --- a/test/test_zacks_analyst_rating_snapshot.py +++ b/test/test_zacks_analyst_rating_snapshot.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_analyst_rating_summary.py b/test/test_zacks_analyst_rating_summary.py index 3598e0a5..d050b364 100644 --- a/test/test_zacks_analyst_rating_summary.py +++ b/test/test_zacks_analyst_rating_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_api.py b/test/test_zacks_api.py index 6472e17b..a22995dc 100644 --- a/test/test_zacks_api.py +++ b/test/test_zacks_api.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_ebitda_consensus.py b/test/test_zacks_ebitda_consensus.py index e212568a..46b00543 100644 --- a/test/test_zacks_ebitda_consensus.py +++ b/test/test_zacks_ebitda_consensus.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_eps_estimate.py b/test/test_zacks_eps_estimate.py index 942fda41..8af4624f 100644 --- a/test/test_zacks_eps_estimate.py +++ b/test/test_zacks_eps_estimate.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_eps_growth_rate.py b/test/test_zacks_eps_growth_rate.py index 2c6d5de9..f1491dc2 100644 --- a/test/test_zacks_eps_growth_rate.py +++ b/test/test_zacks_eps_growth_rate.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_eps_surprise.py b/test/test_zacks_eps_surprise.py index 9e9bf4ce..e6bc2651 100644 --- a/test/test_zacks_eps_surprise.py +++ b/test/test_zacks_eps_surprise.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_eps_surprise_summary.py b/test/test_zacks_eps_surprise_summary.py index 770c6d9f..c95d5999 100644 --- a/test/test_zacks_eps_surprise_summary.py +++ b/test/test_zacks_eps_surprise_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_etf_holding.py b/test/test_zacks_etf_holding.py index aa192e8d..8b0d312a 100644 --- a/test/test_zacks_etf_holding.py +++ b/test/test_zacks_etf_holding.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_forward_pe.py b/test/test_zacks_forward_pe.py index 71efcd39..d8114b44 100644 --- a/test/test_zacks_forward_pe.py +++ b/test/test_zacks_forward_pe.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_institutional_holding.py b/test/test_zacks_institutional_holding.py index 1839a261..35b0db10 100644 --- a/test/test_zacks_institutional_holding.py +++ b/test/test_zacks_institutional_holding.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_institutional_holding_company_detail.py b/test/test_zacks_institutional_holding_company_detail.py index 9f4c18d9..dc581248 100644 --- a/test/test_zacks_institutional_holding_company_detail.py +++ b/test/test_zacks_institutional_holding_company_detail.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_institutional_holding_company_summary.py b/test/test_zacks_institutional_holding_company_summary.py index a1f2f69f..682beaf4 100644 --- a/test/test_zacks_institutional_holding_company_summary.py +++ b/test/test_zacks_institutional_holding_company_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_institutional_holding_historical_summary.py b/test/test_zacks_institutional_holding_historical_summary.py index 7de89714..919a0faf 100644 --- a/test/test_zacks_institutional_holding_historical_summary.py +++ b/test/test_zacks_institutional_holding_historical_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_institutional_holding_owner_detail.py b/test/test_zacks_institutional_holding_owner_detail.py index 396f58da..32093257 100644 --- a/test/test_zacks_institutional_holding_owner_detail.py +++ b/test/test_zacks_institutional_holding_owner_detail.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_institutional_holding_owner_summary.py b/test/test_zacks_institutional_holding_owner_summary.py index 668043be..96f65545 100644 --- a/test/test_zacks_institutional_holding_owner_summary.py +++ b/test/test_zacks_institutional_holding_owner_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_long_term_growth_rate.py b/test/test_zacks_long_term_growth_rate.py index 528f3897..92be28c0 100644 --- a/test/test_zacks_long_term_growth_rate.py +++ b/test/test_zacks_long_term_growth_rate.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_sales_estimate.py b/test/test_zacks_sales_estimate.py index 74f1fd1e..6cf67a7e 100644 --- a/test/test_zacks_sales_estimate.py +++ b/test/test_zacks_sales_estimate.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_sales_surprise.py b/test/test_zacks_sales_surprise.py index d6b3061a..d8baa922 100644 --- a/test/test_zacks_sales_surprise.py +++ b/test/test_zacks_sales_surprise.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_sales_surprise_summary.py b/test/test_zacks_sales_surprise_summary.py index e61d49cc..b687ecfa 100644 --- a/test/test_zacks_sales_surprise_summary.py +++ b/test/test_zacks_sales_surprise_summary.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/test/test_zacks_target_price_consensus.py b/test/test_zacks_target_price_consensus.py index 6f4c0f06..6785ff06 100644 --- a/test/test_zacks_target_price_consensus.py +++ b/test/test_zacks_target_price_consensus.py @@ -5,7 +5,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501 - OpenAPI spec version: 2.64.1 + OpenAPI spec version: 2.66.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """