diff --git a/README.md b/README.md
index 0e8ec97a..08dafb2f 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.0
-- Package version: 6.29.0
+- API version: 2.64.1
+- Package version: 6.29.1
## Requirements.
@@ -112,7 +112,7 @@ Class | Method | HTTP request | Description
*CompanyApi* | [**get_company_historical_data**](docs/CompanyApi.md#get_company_historical_data) | **GET** /companies/{identifier}/historical_data/{tag} | Historical Data for Company
*CompanyApi* | [**get_company_ipos**](docs/CompanyApi.md#get_company_ipos) | **GET** /companies/ipos | IPOs
*CompanyApi* | [**get_company_news**](docs/CompanyApi.md#get_company_news) | **GET** /companies/{identifier}/news | All News by Company
-*CompanyApi* | [**get_company_news_body**](docs/CompanyApi.md#get_company_news_body) | **GET** /companies/news/body | The body of a news article
+*CompanyApi* | [**get_company_news_body**](docs/CompanyApi.md#get_company_news_body) | **GET** /companies/news/body | The body of a news article. This endpoint requires additional authorization beyond basic news access. Please see a representative for details.
*CompanyApi* | [**get_company_public_float**](docs/CompanyApi.md#get_company_public_float) | **GET** /companies/{identifier}/public_float | Get Company's public float
*CompanyApi* | [**get_company_securities**](docs/CompanyApi.md#get_company_securities) | **GET** /companies/{identifier}/securities | All Securities by Company
*CompanyApi* | [**insider_transaction_filings_by_company**](docs/CompanyApi.md#insider_transaction_filings_by_company) | **GET** /companies/{identifier}/insider_transaction_filings | Insider Transaction Filings by Company
diff --git a/docs/ApiResponseCompanyNewsBody.md b/docs/ApiResponseCompanyNewsBody.md
index dbe9a2fb..7cea201c 100644
--- a/docs/ApiResponseCompanyNewsBody.md
+++ b/docs/ApiResponseCompanyNewsBody.md
@@ -12,7 +12,7 @@
Name | Type | Description
------------ | ------------- | -------------
-**body** | str | The article body. Requires additional access.
+**body** | str | The article body.
[//]: # (END_DEFINITION)
diff --git a/docs/ApiResponseSecurityQuote.md b/docs/ApiResponseSecurityQuote.md
index fa32e3f5..7df21904 100644
--- a/docs/ApiResponseSecurityQuote.md
+++ b/docs/ApiResponseSecurityQuote.md
@@ -20,6 +20,7 @@ Name | Type | Description
**high** | float | The highest price from the latest day of trading.
**low** | float | The lowest price from the latest day of trading.
**exchange_volume** | float | The volume of the security from the source.
+**market_volume** | float | The volume of the security for the entire market.
**eod_fifty_two_week_high** | float | The 52 week high price.
**eod_fifty_two_week_low** | float | The 52 week low price.
**marketcap** | float | The current market cap.
diff --git a/docs/CompanyApi.md b/docs/CompanyApi.md
index a37e28a4..723470fb 100644
--- a/docs/CompanyApi.md
+++ b/docs/CompanyApi.md
@@ -17,7 +17,7 @@ Method | HTTP request | Description
[**get_company_historical_data**](CompanyApi.md#get_company_historical_data) | **GET** /companies/{identifier}/historical_data/{tag} | Historical Data for Company
[**get_company_ipos**](CompanyApi.md#get_company_ipos) | **GET** /companies/ipos | IPOs
[**get_company_news**](CompanyApi.md#get_company_news) | **GET** /companies/{identifier}/news | All News by Company
-[**get_company_news_body**](CompanyApi.md#get_company_news_body) | **GET** /companies/news/body | The body of a news article
+[**get_company_news_body**](CompanyApi.md#get_company_news_body) | **GET** /companies/news/body | The body of a news article. This endpoint requires additional authorization beyond basic news access. Please see a representative for details.
[**get_company_public_float**](CompanyApi.md#get_company_public_float) | **GET** /companies/{identifier}/public_float | Get Company's public float
[**get_company_securities**](CompanyApi.md#get_company_securities) | **GET** /companies/{identifier}/securities | All Securities by Company
[**insider_transaction_filings_by_company**](CompanyApi.md#insider_transaction_filings_by_company) | **GET** /companies/{identifier}/insider_transaction_filings | Insider Transaction Filings by Company
@@ -1192,7 +1192,7 @@ Name | Type | Description | Notes
> ApiResponseCompanyNewsBody get_company_news_body(news_story_id, publication_date, specific_source=specific_source, next_page=next_page)
-#### The body of a news article
+#### The body of a news article. This endpoint requires additional authorization beyond basic news access. Please see a representative for details.
Returns the news article body.
diff --git a/docs/SecurityApi.md b/docs/SecurityApi.md
index 2e2ddab3..de48b664 100644
--- a/docs/SecurityApi.md
+++ b/docs/SecurityApi.md
@@ -4098,7 +4098,7 @@ intrinio.ApiClient().set_api_key('YOUR_API_KEY')
intrinio.ApiClient().allow_retries(True)
identifier = 'AAPL'
-source = ['iex']
+source = ['iex,delayed_sip']
response = intrinio.SecurityApi().get_security_realtime_price(identifier, source=source)
print(response)
@@ -4117,7 +4117,7 @@ print(response)
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**identifier** | str| A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) |
- **source** | [**list[str]**](str.md)| Return the realtime price from the specified data source. If no source is specified, the best source available is used. | [optional]
+ **source** | [**list[str]**](str.md)| Return the realtime price from the specified comma-delimited data sources. If no source is specified, the best source available is used. | [optional]
[//]: # (END_PARAMETERS)
diff --git a/docs/StockExchangeApi.md b/docs/StockExchangeApi.md
index c6ddcff6..be98f190 100644
--- a/docs/StockExchangeApi.md
+++ b/docs/StockExchangeApi.md
@@ -301,7 +301,7 @@ start_date = '2020-08-14'
end_date = '2022-08-14'
page_size = 100
next_page = ''
-tickers = ['']
+tickers = ['AAPL,MSFT,NVDA']
next_page2 = ''
response = intrinio.StockExchangeApi().get_stock_exchange_prices(identifier, date=date, start_date=start_date, end_date=end_date, page_size=page_size, next_page=next_page, tickers=tickers, next_page2=next_page2)
@@ -326,7 +326,7 @@ Name | Type | Description | Notes
**end_date** | date| The end of the date range you're querying. May not be used with date parameter. | [optional]
**page_size** | int| The number of results to return | [optional] [default to 100]
**next_page** | str| Gets the next page of data from a previous API call | [optional]
- **tickers** | [**list[str]**](str.md)| The list of ticker symbols to filter to. | [optional]
+ **tickers** | [**list[str]**](str.md)| The comma-delimited list of ticker symbols to filter down to. If not provided, the entire stock exchange is returned. | [optional]
**next_page2** | str| Gets the next page of data from a previous API call | [optional]
@@ -385,10 +385,10 @@ intrinio.ApiClient().set_api_key('YOUR_API_KEY')
intrinio.ApiClient().allow_retries(True)
identifier = 'USCOMP'
-source = ['']
+source = ['iex,delayed_sip']
active_only = ''
page_size = 100
-tickers = ['']
+tickers = ['AAPL,MSFT,NVDA']
next_page = ''
response = intrinio.StockExchangeApi().get_stock_exchange_realtime_prices(identifier, source=source, active_only=active_only, page_size=page_size, tickers=tickers, next_page=next_page)
@@ -408,10 +408,10 @@ print(response)
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**identifier** | str| A Stock Exchange identifier (MIC or Intrinio ID) |
- **source** | [**list[str]**](str.md)| Return realtime prices from the specified data source. If no source is specified, all sources are used. | [optional]
+ **source** | [**list[str]**](str.md)| Return realtime prices from the specified comma-delimited data sources. If no source is specified, all sources available to user are used. | [optional]
**active_only** | bool| Returns prices only from the most recent trading day. | [optional]
**page_size** | int| The number of results to return | [optional] [default to 100]
- **tickers** | [**list[str]**](str.md)| The list of ticker symbols to filter to. | [optional]
+ **tickers** | [**list[str]**](str.md)| The comma-delimited list of ticker symbols to filter to. If not provided, the entire stock exchange is returned. | [optional]
**next_page** | str| Gets the next page of data from a previous API call | [optional]
diff --git a/intrinio_sdk/__init__.py b/intrinio_sdk/__init__.py
index 54ea206e..7c88aa47 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.0
+ OpenAPI spec version: 2.64.1
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 d8782c11..82df2a69 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.0
+ OpenAPI spec version: 2.64.1
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 22215c29..d95d596e 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.0
+ OpenAPI spec version: 2.64.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
@@ -1611,7 +1611,7 @@ def get_company_news_with_http_info(self, identifier, **kwargs): # noqa: E501
collection_formats=collection_formats)
def get_company_news_body(self, news_story_id, publication_date, **kwargs): # noqa: E501
- """The body of a news article # noqa: E501
+ """The body of a news article. This endpoint requires additional authorization beyond basic news access. Please see a representative for details. # noqa: E501
Returns the news article body. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
@@ -1636,7 +1636,7 @@ def get_company_news_body(self, news_story_id, publication_date, **kwargs): # n
return data
def get_company_news_body_with_http_info(self, news_story_id, publication_date, **kwargs): # noqa: E501
- """The body of a news article # noqa: E501
+ """The body of a news article. This endpoint requires additional authorization beyond basic news access. Please see a representative for details. # noqa: E501
Returns the news article body. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
diff --git a/intrinio_sdk/api/data_point_api.py b/intrinio_sdk/api/data_point_api.py
index a5977948..5619505a 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.0
+ OpenAPI spec version: 2.64.1
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 7004e0c7..9a779153 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.0
+ OpenAPI spec version: 2.64.1
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 ce187566..738b27e7 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.0
+ OpenAPI spec version: 2.64.1
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 105ad0b0..bf5e4d84 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.0
+ OpenAPI spec version: 2.64.1
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 707f7c0b..c57ed365 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.0
+ OpenAPI spec version: 2.64.1
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 378d85e4..d28b2591 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.0
+ OpenAPI spec version: 2.64.1
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 809afa45..3fd0ff4f 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.0
+ OpenAPI spec version: 2.64.1
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 e8d1b1e1..7f3cc38d 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.0
+ OpenAPI spec version: 2.64.1
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 bac3503b..7800ef56 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.0
+ OpenAPI spec version: 2.64.1
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 848b800d..3f363521 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.0
+ OpenAPI spec version: 2.64.1
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 37dc68d1..be355704 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.0
+ OpenAPI spec version: 2.64.1
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 7057aa98..e7eb0684 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.0
+ OpenAPI spec version: 2.64.1
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 c5a5bc98..0889d645 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.0
+ OpenAPI spec version: 2.64.1
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 5fcf92aa..fc01e41d 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.0
+ OpenAPI spec version: 2.64.1
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 bc1f83f9..2ce3f4ff 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.0
+ OpenAPI spec version: 2.64.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
@@ -5557,7 +5557,7 @@ def get_security_realtime_price(self, identifier, **kwargs): # noqa: E501
:param async bool
:param str identifier: A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) (required)
- :param list[str] source: Return the realtime price from the specified data source. If no source is specified, the best source available is used.
+ :param list[str] source: Return the realtime price from the specified comma-delimited data sources. If no source is specified, the best source available is used.
:return: RealtimeStockPrice
If the method is called asynchronously,
returns the request thread.
@@ -5580,7 +5580,7 @@ def get_security_realtime_price_with_http_info(self, identifier, **kwargs): # n
:param async bool
:param str identifier: A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) (required)
- :param list[str] source: Return the realtime price from the specified data source. If no source is specified, the best source available is used.
+ :param list[str] source: Return the realtime price from the specified comma-delimited data sources. If no source is specified, the best source available is used.
:return: RealtimeStockPrice
If the method is called asynchronously,
returns the request thread.
diff --git a/intrinio_sdk/api/stock_exchange_api.py b/intrinio_sdk/api/stock_exchange_api.py
index 99f8b7ff..b9a7d151 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.0
+ OpenAPI spec version: 2.64.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
@@ -358,7 +358,7 @@ def get_stock_exchange_prices(self, identifier, **kwargs): # noqa: E501
:param date end_date: The end of the date range you're querying. May not be used with date parameter.
:param int page_size: The number of results to return
:param str next_page: Gets the next page of data from a previous API call
- :param list[str] tickers: The list of ticker symbols to filter to.
+ :param list[str] tickers: The comma-delimited list of ticker symbols to filter down to. If not provided, the entire stock exchange is returned.
:param str next_page2: Gets the next page of data from a previous API call
:return: ApiResponseStockExchangeStockPrices
If the method is called asynchronously,
@@ -387,7 +387,7 @@ def get_stock_exchange_prices_with_http_info(self, identifier, **kwargs): # noq
:param date end_date: The end of the date range you're querying. May not be used with date parameter.
:param int page_size: The number of results to return
:param str next_page: Gets the next page of data from a previous API call
- :param list[str] tickers: The list of ticker symbols to filter to.
+ :param list[str] tickers: The comma-delimited list of ticker symbols to filter down to. If not provided, the entire stock exchange is returned.
:param str next_page2: Gets the next page of data from a previous API call
:return: ApiResponseStockExchangeStockPrices
If the method is called asynchronously,
@@ -479,10 +479,10 @@ def get_stock_exchange_realtime_prices(self, identifier, **kwargs): # noqa: E50
:param async bool
:param str identifier: A Stock Exchange identifier (MIC or Intrinio ID) (required)
- :param list[str] source: Return realtime prices from the specified data source. If no source is specified, all sources are used.
+ :param list[str] source: Return realtime prices from the specified comma-delimited data sources. If no source is specified, all sources available to user are used.
:param bool active_only: Returns prices only from the most recent trading day.
:param int page_size: The number of results to return
- :param list[str] tickers: The list of ticker symbols to filter to.
+ :param list[str] tickers: The comma-delimited list of ticker symbols to filter to. If not provided, the entire stock exchange is returned.
:param str next_page: Gets the next page of data from a previous API call
:return: ApiResponseStockExchangeRealtimeStockPrices
If the method is called asynchronously,
@@ -506,10 +506,10 @@ def get_stock_exchange_realtime_prices_with_http_info(self, identifier, **kwargs
:param async bool
:param str identifier: A Stock Exchange identifier (MIC or Intrinio ID) (required)
- :param list[str] source: Return realtime prices from the specified data source. If no source is specified, all sources are used.
+ :param list[str] source: Return realtime prices from the specified comma-delimited data sources. If no source is specified, all sources available to user are used.
:param bool active_only: Returns prices only from the most recent trading day.
:param int page_size: The number of results to return
- :param list[str] tickers: The list of ticker symbols to filter to.
+ :param list[str] tickers: The comma-delimited list of ticker symbols to filter to. If not provided, the entire stock exchange is returned.
:param str next_page: Gets the next page of data from a previous API call
:return: ApiResponseStockExchangeRealtimeStockPrices
If the method is called asynchronously,
diff --git a/intrinio_sdk/api/technical_api.py b/intrinio_sdk/api/technical_api.py
index c2d97d0d..3c8cc8bb 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.0
+ OpenAPI spec version: 2.64.1
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 cc422b54..7e9ed57f 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.0
+ OpenAPI spec version: 2.64.1
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 b77f9b70..59203ae7 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.0
+ OpenAPI spec version: 2.64.1
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.0/python'
+ self.user_agent = 'Swagger-Codegen/6.29.1/python'
def __del__(self):
self.pool.close()
diff --git a/intrinio_sdk/configuration.py b/intrinio_sdk/configuration.py
index 8eea63f7..79e880fd 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.0
+ OpenAPI spec version: 2.64.1
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.0\n"\
- "SDK Package Version: 6.29.0".\
+ "Version of the API: 2.64.1\n"\
+ "SDK Package Version: 6.29.1".\
format(env=sys.platform, pyversion=sys.version)
diff --git a/intrinio_sdk/models/__init__.py b/intrinio_sdk/models/__init__.py
index 18654150..536acd80 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.0
+ OpenAPI spec version: 2.64.1
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 7e4e69e8..04a63870 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.0
+ OpenAPI spec version: 2.64.1
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 f80fbd0c..99508e32 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.0
+ OpenAPI spec version: 2.64.1
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 a884a620..65fb0a40 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.0
+ OpenAPI spec version: 2.64.1
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 6ae04701..2e25d45e 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.0
+ OpenAPI spec version: 2.64.1
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 8cb7c86e..6fb01078 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.0
+ OpenAPI spec version: 2.64.1
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 6358a99a..be731768 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.0
+ OpenAPI spec version: 2.64.1
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 5678d36d..b27535cd 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.0
+ OpenAPI spec version: 2.64.1
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 adb698b7..91425b37 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.0
+ OpenAPI spec version: 2.64.1
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 e99e8963..5adb54ee 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.0
+ OpenAPI spec version: 2.64.1
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 b1b938cd..94480b2c 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.0
+ OpenAPI spec version: 2.64.1
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 51da9984..f0fa405c 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.0
+ OpenAPI spec version: 2.64.1
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 fa908c6f..eb7ec746 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.0
+ OpenAPI spec version: 2.64.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
@@ -51,7 +51,7 @@ def __init__(self, body=None): # noqa: E501
def body(self):
"""Gets the body of this ApiResponseCompanyNewsBody. # noqa: E501
- The article body. Requires additional access. # noqa: E501
+ The article body. # noqa: E501
:return: The body of this ApiResponseCompanyNewsBody. # noqa: E501
:rtype: str
@@ -62,7 +62,7 @@ def body(self):
def body_dict(self):
"""Gets the body of this ApiResponseCompanyNewsBody. # noqa: E501
- The article body. Requires additional access. as a dictionary. Useful for Panda Dataframes. # noqa: E501
+ The article body. as a dictionary. Useful for Panda Dataframes. # noqa: E501
:return: The body of this ApiResponseCompanyNewsBody. # noqa: E501
:rtype: str
@@ -95,7 +95,7 @@ def body_dict(self):
def body(self, body):
"""Sets the body of this ApiResponseCompanyNewsBody.
- The article body. Requires additional access. # noqa: E501
+ The article body. # noqa: E501
:param body: The body of this ApiResponseCompanyNewsBody. # noqa: E501
:type: str
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 2c0fda9f..935c90e8 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.0
+ OpenAPI spec version: 2.64.1
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 67a95eec..a431c037 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.0
+ OpenAPI spec version: 2.64.1
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 b1abe8de..6bad39a4 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.0
+ OpenAPI spec version: 2.64.1
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 83887a10..aad7ed72 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.0
+ OpenAPI spec version: 2.64.1
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 c88ba456..5263490b 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.0
+ OpenAPI spec version: 2.64.1
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 de99e0dc..c0da56e5 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.0
+ OpenAPI spec version: 2.64.1
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 5bdb6171..3e2d7279 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.0
+ OpenAPI spec version: 2.64.1
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 00f371ee..e6251103 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.0
+ OpenAPI spec version: 2.64.1
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 19528019..89557434 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.0
+ OpenAPI spec version: 2.64.1
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 44e60946..c47ac4c5 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.0
+ OpenAPI spec version: 2.64.1
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 dab27dad..7d2eba5a 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.0
+ OpenAPI spec version: 2.64.1
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 6cf47e81..98ea5cb0 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.0
+ OpenAPI spec version: 2.64.1
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 c835b864..8309d1ab 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.0
+ OpenAPI spec version: 2.64.1
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 61a0e87f..d284eb6d 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.0
+ OpenAPI spec version: 2.64.1
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 ff452da1..7427e774 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.0
+ OpenAPI spec version: 2.64.1
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 e094a279..06c39108 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.0
+ OpenAPI spec version: 2.64.1
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 a2bc0a86..0644a2c2 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.0
+ OpenAPI spec version: 2.64.1
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 4be78989..852bf957 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.0
+ OpenAPI spec version: 2.64.1
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 0b38bce4..044e43b3 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.0
+ OpenAPI spec version: 2.64.1
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 8ae84d1a..a64ce61b 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.0
+ OpenAPI spec version: 2.64.1
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 bd87a229..9890061d 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.0
+ OpenAPI spec version: 2.64.1
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 2d6b25ba..15cd2477 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.0
+ OpenAPI spec version: 2.64.1
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 0df2e4be..7d60e6ce 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.0
+ OpenAPI spec version: 2.64.1
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 484a86b7..1a165a90 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.0
+ OpenAPI spec version: 2.64.1
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 cdcfb7e5..753ed9d1 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.0
+ OpenAPI spec version: 2.64.1
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 9309cb8b..8cb1bbfc 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.0
+ OpenAPI spec version: 2.64.1
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 a20fec42..58d4cfe3 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.0
+ OpenAPI spec version: 2.64.1
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 99681ec1..ba68b36f 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.0
+ OpenAPI spec version: 2.64.1
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 ecafd77b..2ec8aee1 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.0
+ OpenAPI spec version: 2.64.1
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 45fb160f..17395954 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.0
+ OpenAPI spec version: 2.64.1
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 6b40d0ed..714259c2 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.0
+ OpenAPI spec version: 2.64.1
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 f06695e4..f152da67 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.0
+ OpenAPI spec version: 2.64.1
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 1d893ef5..57e72423 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.0
+ OpenAPI spec version: 2.64.1
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 792c1973..ffdcf7d3 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.0
+ OpenAPI spec version: 2.64.1
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 0ed6aaaa..3d7673bb 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.0
+ OpenAPI spec version: 2.64.1
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 d28e09fe..2ec3d737 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.0
+ OpenAPI spec version: 2.64.1
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 046c63d7..35c434ef 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.0
+ OpenAPI spec version: 2.64.1
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 5efb3711..7e16cba4 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.0
+ OpenAPI spec version: 2.64.1
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 11f7b8f1..d0774823 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.0
+ OpenAPI spec version: 2.64.1
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 8a48f161..3fd5ebdb 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.0
+ OpenAPI spec version: 2.64.1
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 22bf22ff..e15f884f 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.0
+ OpenAPI spec version: 2.64.1
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 7250ef04..781730d6 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.0
+ OpenAPI spec version: 2.64.1
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 5613fc78..8cc0be4a 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.0
+ OpenAPI spec version: 2.64.1
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 e52ca31f..71448486 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.0
+ OpenAPI spec version: 2.64.1
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 3e4ce438..4e449180 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.0
+ OpenAPI spec version: 2.64.1
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 965c354c..c69d4416 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.0
+ OpenAPI spec version: 2.64.1
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 c1ced73e..bef60dbf 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.0
+ OpenAPI spec version: 2.64.1
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 be8a01ca..4de067b1 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.0
+ OpenAPI spec version: 2.64.1
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 b5ef77f7..bf8f25bf 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.0
+ OpenAPI spec version: 2.64.1
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 557d7a49..a1c99aa3 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.0
+ OpenAPI spec version: 2.64.1
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 a5870389..b75468b8 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.0
+ OpenAPI spec version: 2.64.1
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 5d21b84a..512c2253 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.0
+ OpenAPI spec version: 2.64.1
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 0bf5b16b..99f62a86 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.0
+ OpenAPI spec version: 2.64.1
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 7fa46d36..bea1b606 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.0
+ OpenAPI spec version: 2.64.1
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 772c7167..1742dccc 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.0
+ OpenAPI spec version: 2.64.1
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 fe4c68e3..16879c69 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.0
+ OpenAPI spec version: 2.64.1
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 24597255..ba110d57 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.0
+ OpenAPI spec version: 2.64.1
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 5b86529f..a8997717 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.0
+ OpenAPI spec version: 2.64.1
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 e6afffd0..e4712f7c 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.0
+ OpenAPI spec version: 2.64.1
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 c405e346..0cb689d5 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.0
+ OpenAPI spec version: 2.64.1
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 c5886d42..1bee730c 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.0
+ OpenAPI spec version: 2.64.1
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 b2e2eb74..3a6a121f 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.0
+ OpenAPI spec version: 2.64.1
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 91f5d378..f1954cbd 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.0
+ OpenAPI spec version: 2.64.1
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 0269f2cd..9a03e3a5 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.0
+ OpenAPI spec version: 2.64.1
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 83757409..fec736a3 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.0
+ OpenAPI spec version: 2.64.1
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 692ba3d1..238d484b 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.0
+ OpenAPI spec version: 2.64.1
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 13056f2c..1d4c30dc 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.0
+ OpenAPI spec version: 2.64.1
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 0e8c8a43..d88a3e6b 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.0
+ OpenAPI spec version: 2.64.1
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 706c2cda..536dc7e3 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.0
+ OpenAPI spec version: 2.64.1
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 b70538c5..a37d709e 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.0
+ OpenAPI spec version: 2.64.1
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 af349df5..e32cf562 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.0
+ OpenAPI spec version: 2.64.1
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 cc14079b..d42945b1 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.0
+ OpenAPI spec version: 2.64.1
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 825a57e3..e8c7da1e 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.0
+ OpenAPI spec version: 2.64.1
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 e67a110a..8b4961cf 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.0
+ OpenAPI spec version: 2.64.1
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 a882a419..7445ac4b 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.0
+ OpenAPI spec version: 2.64.1
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 a16d81f7..369c712a 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.0
+ OpenAPI spec version: 2.64.1
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 9740106e..12450aac 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.0
+ OpenAPI spec version: 2.64.1
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 520ae60b..7ef77cf0 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.0
+ OpenAPI spec version: 2.64.1
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 03d3c0e1..f5371f12 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.0
+ OpenAPI spec version: 2.64.1
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 7db2f4ff..dc11b3e2 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.0
+ OpenAPI spec version: 2.64.1
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 5bcb2265..d18f8d2a 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.0
+ OpenAPI spec version: 2.64.1
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 5b1f8078..f00e2431 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.0
+ OpenAPI spec version: 2.64.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
@@ -41,6 +41,7 @@ class ApiResponseSecurityQuote(object):
'high': 'float',
'low': 'float',
'exchange_volume': 'float',
+ 'market_volume': 'float',
'eod_fifty_two_week_high': 'float',
'eod_fifty_two_week_low': 'float',
'marketcap': 'float',
@@ -70,6 +71,7 @@ class ApiResponseSecurityQuote(object):
'high': 'high',
'low': 'low',
'exchange_volume': 'exchange_volume',
+ 'market_volume': 'market_volume',
'eod_fifty_two_week_high': 'eod_fifty_two_week_high',
'eod_fifty_two_week_low': 'eod_fifty_two_week_low',
'marketcap': 'marketcap',
@@ -90,7 +92,7 @@ class ApiResponseSecurityQuote(object):
'change_percent_1825_days': 'change_percent_1825_days'
}
- def __init__(self, security=None, last=None, last_time=None, source=None, open=None, high=None, low=None, exchange_volume=None, eod_fifty_two_week_high=None, eod_fifty_two_week_low=None, marketcap=None, pricetoearnings=None, previous_close=None, previous_close_date=None, change=None, change_percent=None, adj_close_5_days_ago=None, adj_close_30_days_ago=None, adj_close_180_days_ago=None, adj_close_365_days_ago=None, adj_close_1825_days_ago=None, change_percent_5_days=None, change_percent_30_days=None, change_percent_180_days=None, change_percent_365_days=None, change_percent_1825_days=None): # noqa: E501
+ def __init__(self, security=None, last=None, last_time=None, source=None, open=None, high=None, low=None, exchange_volume=None, market_volume=None, eod_fifty_two_week_high=None, eod_fifty_two_week_low=None, marketcap=None, pricetoearnings=None, previous_close=None, previous_close_date=None, change=None, change_percent=None, adj_close_5_days_ago=None, adj_close_30_days_ago=None, adj_close_180_days_ago=None, adj_close_365_days_ago=None, adj_close_1825_days_ago=None, change_percent_5_days=None, change_percent_30_days=None, change_percent_180_days=None, change_percent_365_days=None, change_percent_1825_days=None): # noqa: E501
"""ApiResponseSecurityQuote - a model defined in Swagger""" # noqa: E501
self._security = None
@@ -101,6 +103,7 @@ def __init__(self, security=None, last=None, last_time=None, source=None, open=N
self._high = None
self._low = None
self._exchange_volume = None
+ self._market_volume = None
self._eod_fifty_two_week_high = None
self._eod_fifty_two_week_low = None
self._marketcap = None
@@ -137,6 +140,8 @@ def __init__(self, security=None, last=None, last_time=None, source=None, open=N
self.low = low
if exchange_volume is not None:
self.exchange_volume = exchange_volume
+ if market_volume is not None:
+ self.market_volume = market_volume
if eod_fifty_two_week_high is not None:
self.eod_fifty_two_week_high = eod_fifty_two_week_high
if eod_fifty_two_week_low is not None:
@@ -622,6 +627,62 @@ def exchange_volume(self, exchange_volume):
self._exchange_volume = exchange_volume
+ @property
+ def market_volume(self):
+ """Gets the market_volume of this ApiResponseSecurityQuote. # noqa: E501
+
+ The volume of the security for the entire market. # noqa: E501
+
+ :return: The market_volume of this ApiResponseSecurityQuote. # noqa: E501
+ :rtype: float
+ """
+ return self._market_volume
+
+ @property
+ def market_volume_dict(self):
+ """Gets the market_volume of this ApiResponseSecurityQuote. # noqa: E501
+
+ The volume of the security for the entire market. as a dictionary. Useful for Panda Dataframes. # noqa: E501
+
+ :return: The market_volume of this ApiResponseSecurityQuote. # noqa: E501
+ :rtype: float
+ """
+
+ result = None
+
+ value = self.market_volume
+ 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 = { 'market_volume': value }
+
+
+ return result
+
+
+ @market_volume.setter
+ def market_volume(self, market_volume):
+ """Sets the market_volume of this ApiResponseSecurityQuote.
+
+ The volume of the security for the entire market. # noqa: E501
+
+ :param market_volume: The market_volume of this ApiResponseSecurityQuote. # noqa: E501
+ :type: float
+ """
+
+ self._market_volume = market_volume
+
@property
def eod_fifty_two_week_high(self):
"""Gets the eod_fifty_two_week_high of this ApiResponseSecurityQuote. # noqa: E501
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 17cf1a6c..76824ce5 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.0
+ OpenAPI spec version: 2.64.1
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 c21c7d37..6eea9e1e 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.0
+ OpenAPI spec version: 2.64.1
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 1f8b86db..5d1d275e 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.0
+ OpenAPI spec version: 2.64.1
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 3fc4f472..407187ad 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.0
+ OpenAPI spec version: 2.64.1
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 f8c2f0a9..d9430cad 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.0
+ OpenAPI spec version: 2.64.1
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 73c9c143..ff369d66 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.0
+ OpenAPI spec version: 2.64.1
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 9216f16f..7b5aeb23 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.0
+ OpenAPI spec version: 2.64.1
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 1003bdef..a5867e0f 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.0
+ OpenAPI spec version: 2.64.1
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 e664dc71..7f90db00 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.0
+ OpenAPI spec version: 2.64.1
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 9aac1ee6..d5cf4759 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.0
+ OpenAPI spec version: 2.64.1
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 fb0d2040..e9823943 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.0
+ OpenAPI spec version: 2.64.1
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 c8eef051..70a6b1d0 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.0
+ OpenAPI spec version: 2.64.1
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 397d9c3b..b1d3ce18 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.0
+ OpenAPI spec version: 2.64.1
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 1457d70c..c7d52521 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.0
+ OpenAPI spec version: 2.64.1
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 c54fb0be..1f86d4a8 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.0
+ OpenAPI spec version: 2.64.1
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 c875fb5d..4d50785c 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.0
+ OpenAPI spec version: 2.64.1
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 3c7e99fa..5bc1488a 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.0
+ OpenAPI spec version: 2.64.1
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 404463c9..64f233de 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.0
+ OpenAPI spec version: 2.64.1
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 b62ef2ff..59b7ed2d 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.0
+ OpenAPI spec version: 2.64.1
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 c884a845..4e7c7e0c 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.0
+ OpenAPI spec version: 2.64.1
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 073a4108..675dda90 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.0
+ OpenAPI spec version: 2.64.1
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 06b0b94d..95022dd3 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.0
+ OpenAPI spec version: 2.64.1
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 e891b351..43d73a37 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.0
+ OpenAPI spec version: 2.64.1
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 b1fe26f9..5bf35b89 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.0
+ OpenAPI spec version: 2.64.1
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 f9475875..7f60bce3 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.0
+ OpenAPI spec version: 2.64.1
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 2ff9f8b0..4a2ef6ce 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.0
+ OpenAPI spec version: 2.64.1
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 26d5de98..5c1d66ef 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.0
+ OpenAPI spec version: 2.64.1
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 19425715..2cfef7b6 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.0
+ OpenAPI spec version: 2.64.1
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 416d8cab..241c027f 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.0
+ OpenAPI spec version: 2.64.1
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 61d11c7c..e275466d 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.0
+ OpenAPI spec version: 2.64.1
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 cd04d8de..307ffb19 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.0
+ OpenAPI spec version: 2.64.1
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 a9c5ac68..e9ffadb3 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.0
+ OpenAPI spec version: 2.64.1
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 73d49a9f..a9ef028e 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.0
+ OpenAPI spec version: 2.64.1
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 81174e88..d672229b 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.0
+ OpenAPI spec version: 2.64.1
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 2a67b7a9..15898100 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.0
+ OpenAPI spec version: 2.64.1
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 9725bb0f..421d43e8 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.0
+ OpenAPI spec version: 2.64.1
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 a0c5e91e..4515faac 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.0
+ OpenAPI spec version: 2.64.1
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 5fc48703..cb251aba 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.0
+ OpenAPI spec version: 2.64.1
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 fae98d30..b63ceed4 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.0
+ OpenAPI spec version: 2.64.1
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 df25c269..099135d7 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.0
+ OpenAPI spec version: 2.64.1
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 eb0e0e88..cdd9550e 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.0
+ OpenAPI spec version: 2.64.1
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 76383ec3..a80527e9 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.0
+ OpenAPI spec version: 2.64.1
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 e525753c..6bd80b71 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.0
+ OpenAPI spec version: 2.64.1
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 df6e7a79..8d6b8feb 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.0
+ OpenAPI spec version: 2.64.1
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 0e3c6ba1..2f6bca3d 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.0
+ OpenAPI spec version: 2.64.1
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 c457e468..ce03a552 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.0
+ OpenAPI spec version: 2.64.1
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 11f7acc5..a6a43811 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.0
+ OpenAPI spec version: 2.64.1
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 37c0351e..3ed5348b 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.0
+ OpenAPI spec version: 2.64.1
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 f1ede3ea..9bd39a89 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.0
+ OpenAPI spec version: 2.64.1
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 e6cc4284..8a450ba0 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.0
+ OpenAPI spec version: 2.64.1
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 e6577690..c3b38e69 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.0
+ OpenAPI spec version: 2.64.1
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 05c713fd..88685190 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.0
+ OpenAPI spec version: 2.64.1
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 e0d4dd8a..f6c8879a 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.0
+ OpenAPI spec version: 2.64.1
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 a513ce37..2514b92d 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.0
+ OpenAPI spec version: 2.64.1
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 8d5b888e..532626f7 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.0
+ OpenAPI spec version: 2.64.1
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 4386823d..56514272 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.0
+ OpenAPI spec version: 2.64.1
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 d9779821..e656890d 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.0
+ OpenAPI spec version: 2.64.1
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 26dbbe87..c329f4ff 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.0
+ OpenAPI spec version: 2.64.1
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 2e1b6a41..6a79c1ac 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.0
+ OpenAPI spec version: 2.64.1
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 dc3af2d9..f3579b22 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.0
+ OpenAPI spec version: 2.64.1
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 34fca172..f0d96497 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.0
+ OpenAPI spec version: 2.64.1
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 7f311d86..69dbe7db 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.0
+ OpenAPI spec version: 2.64.1
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 6de4acef..b67adc60 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.0
+ OpenAPI spec version: 2.64.1
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 9e69f55b..6a9d57cc 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.0
+ OpenAPI spec version: 2.64.1
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 50efdaa8..0475dde7 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.0
+ OpenAPI spec version: 2.64.1
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 c5bfe594..e0bac19a 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.0
+ OpenAPI spec version: 2.64.1
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 8e4f8307..8df854d2 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.0
+ OpenAPI spec version: 2.64.1
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 4c9d839e..f881dcc5 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.0
+ OpenAPI spec version: 2.64.1
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 6b14344c..d8824369 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.0
+ OpenAPI spec version: 2.64.1
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 b9bcfebc..21a139d6 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.0
+ OpenAPI spec version: 2.64.1
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 893788eb..9817b8e7 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.0
+ OpenAPI spec version: 2.64.1
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 440b941a..ee1953e4 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.0
+ OpenAPI spec version: 2.64.1
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 f57825e2..cf4fbb4a 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.0
+ OpenAPI spec version: 2.64.1
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 aa7f50e1..6db9db56 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.0
+ OpenAPI spec version: 2.64.1
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 f15cc76b..1ea1d7fe 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.0
+ OpenAPI spec version: 2.64.1
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 d566ee94..f88b0860 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.0
+ OpenAPI spec version: 2.64.1
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 eede70c4..67dd73f6 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.0
+ OpenAPI spec version: 2.64.1
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 a78841e6..50b994a6 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.0
+ OpenAPI spec version: 2.64.1
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 e67d8145..9d0153f0 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.0
+ OpenAPI spec version: 2.64.1
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 db8b3696..b157fc6d 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.0
+ OpenAPI spec version: 2.64.1
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 444e6dfa..e8e25e38 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.0
+ OpenAPI spec version: 2.64.1
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 675d2476..9874d6a0 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.0
+ OpenAPI spec version: 2.64.1
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 e0154609..7c80e1d6 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.0
+ OpenAPI spec version: 2.64.1
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 cb8f32a5..4265a7ab 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.0
+ OpenAPI spec version: 2.64.1
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 1d9e7f8b..34393a85 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.0
+ OpenAPI spec version: 2.64.1
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 53965baf..caa8e3ce 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.0
+ OpenAPI spec version: 2.64.1
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 860c1b5e..570703ce 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.0
+ OpenAPI spec version: 2.64.1
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 9f314356..cc0617b7 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.0
+ OpenAPI spec version: 2.64.1
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 f028815b..5c4f1943 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.0
+ OpenAPI spec version: 2.64.1
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 0b830f84..364af3b9 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.0
+ OpenAPI spec version: 2.64.1
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 da797c92..56934df3 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.0
+ OpenAPI spec version: 2.64.1
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 50f4f9e1..9c2b5ce8 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.0
+ OpenAPI spec version: 2.64.1
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 0ba42669..d1eac8ab 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.0
+ OpenAPI spec version: 2.64.1
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 188e6fbb..8093f2c6 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.0
+ OpenAPI spec version: 2.64.1
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 62927ccc..1803c61f 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.0
+ OpenAPI spec version: 2.64.1
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 8e878b0b..177049a4 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.0
+ OpenAPI spec version: 2.64.1
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 c83b91db..72a873cf 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.0
+ OpenAPI spec version: 2.64.1
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 458bd0c2..0a1c4d10 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.0
+ OpenAPI spec version: 2.64.1
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 6a1b5393..63ae1905 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.0
+ OpenAPI spec version: 2.64.1
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 8a63e57f..a35ad1ec 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.0
+ OpenAPI spec version: 2.64.1
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 8b0834ec..9866dc56 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.0
+ OpenAPI spec version: 2.64.1
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 9416eb55..6d0204e3 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.0
+ OpenAPI spec version: 2.64.1
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 396e7f28..167664e8 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.0
+ OpenAPI spec version: 2.64.1
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 d6415f5d..5ac6dd3a 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.0
+ OpenAPI spec version: 2.64.1
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 d99bd6c7..1ef3a082 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.0
+ OpenAPI spec version: 2.64.1
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 4d47c524..953e34b0 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.0
+ OpenAPI spec version: 2.64.1
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 41528c6f..bef4aa8a 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.0
+ OpenAPI spec version: 2.64.1
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 27a482c8..5081ee78 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.0
+ OpenAPI spec version: 2.64.1
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 234c0c4d..46932e8e 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.0
+ OpenAPI spec version: 2.64.1
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 4d435f9c..b19fa2f4 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.0
+ OpenAPI spec version: 2.64.1
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 d7af261d..6c844578 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.0
+ OpenAPI spec version: 2.64.1
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 ab57443b..c38190f7 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.0
+ OpenAPI spec version: 2.64.1
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 12cf3cd3..bd6ebf31 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.0
+ OpenAPI spec version: 2.64.1
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 38a2d546..ff485b41 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.0
+ OpenAPI spec version: 2.64.1
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 ce73ccb6..a5e430d5 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.0
+ OpenAPI spec version: 2.64.1
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 f844cb87..d50d89f3 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.0
+ OpenAPI spec version: 2.64.1
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 42739906..c4f02a2c 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.0
+ OpenAPI spec version: 2.64.1
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 6b084f07..0f2221bf 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.0
+ OpenAPI spec version: 2.64.1
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 46d3076e..ad5e77bc 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.0
+ OpenAPI spec version: 2.64.1
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 ed064215..fe278be7 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.0
+ OpenAPI spec version: 2.64.1
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 33ef9288..a05e3f79 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.0
+ OpenAPI spec version: 2.64.1
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 291cbaec..df9a5c66 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.0
+ OpenAPI spec version: 2.64.1
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 eb84a447..a92e9306 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.0
+ OpenAPI spec version: 2.64.1
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 92c69e38..e06c4e27 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.0
+ OpenAPI spec version: 2.64.1
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 9d219676..bf32f091 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.0
+ OpenAPI spec version: 2.64.1
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 6d83080b..9387e943 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.0
+ OpenAPI spec version: 2.64.1
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 ba741263..63cb2bc0 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.0
+ OpenAPI spec version: 2.64.1
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 d2b9a9fd..35ab207e 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.0
+ OpenAPI spec version: 2.64.1
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 7d9eff74..0e06769d 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.0
+ OpenAPI spec version: 2.64.1
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 77d7e8d5..d5125f5e 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.0
+ OpenAPI spec version: 2.64.1
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 81ac753c..8cb84018 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.0
+ OpenAPI spec version: 2.64.1
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 5b058ede..161f1467 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.0
+ OpenAPI spec version: 2.64.1
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 07723b81..8458fd06 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.0
+ OpenAPI spec version: 2.64.1
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 071cd471..89e91d07 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.0
+ OpenAPI spec version: 2.64.1
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 4b5f8beb..91528bab 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.0
+ OpenAPI spec version: 2.64.1
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 345a3362..5fa309d7 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.0
+ OpenAPI spec version: 2.64.1
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 d67c65c0..48cd5169 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.0
+ OpenAPI spec version: 2.64.1
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 9d0347d2..fd59f852 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.0
+ OpenAPI spec version: 2.64.1
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 fc449748..43985ce2 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.0
+ OpenAPI spec version: 2.64.1
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 56eff898..94f6c3f6 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.0
+ OpenAPI spec version: 2.64.1
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 3cc2cceb..589fbd45 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.0
+ OpenAPI spec version: 2.64.1
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 c7d37ed7..37c00264 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.0
+ OpenAPI spec version: 2.64.1
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 ef752835..a43bfc32 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.0
+ OpenAPI spec version: 2.64.1
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 ff808113..5867be83 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.0
+ OpenAPI spec version: 2.64.1
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 92a0ea39..54a7a16e 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.0
+ OpenAPI spec version: 2.64.1
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 c4b50d70..86a2326c 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.0
+ OpenAPI spec version: 2.64.1
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 cc967e3f..d84bb079 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.0
+ OpenAPI spec version: 2.64.1
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 b016bec4..e5bdbe57 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.0
+ OpenAPI spec version: 2.64.1
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 724e1700..ee5688aa 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.0
+ OpenAPI spec version: 2.64.1
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 86df6f0d..18c397c9 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.0
+ OpenAPI spec version: 2.64.1
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 5e2b5d18..6b2a9e03 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.0
+ OpenAPI spec version: 2.64.1
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 49ab1aed..af57328f 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.0
+ OpenAPI spec version: 2.64.1
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 29f499c8..fc9910c4 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.0
+ OpenAPI spec version: 2.64.1
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 b173ebfa..e535b11e 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.0
+ OpenAPI spec version: 2.64.1
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 679a88a6..f38ea413 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.0
+ OpenAPI spec version: 2.64.1
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 1734cfd0..015da1b1 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.0
+ OpenAPI spec version: 2.64.1
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 0e5d5dcd..324752ee 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.0
+ OpenAPI spec version: 2.64.1
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 857bd25c..a1075c70 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.0
+ OpenAPI spec version: 2.64.1
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 8b451fb2..936ed2af 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.0
+ OpenAPI spec version: 2.64.1
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 3f752c62..3672d1d7 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.0
+ OpenAPI spec version: 2.64.1
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 42ed78ff..aecc2cb9 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.0
+ OpenAPI spec version: 2.64.1
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 c57c8793..8dc04379 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.0
+ OpenAPI spec version: 2.64.1
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 001a0459..8cd191d6 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.0
+ OpenAPI spec version: 2.64.1
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 0cdbf6e5..e6198ad0 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.0
+ OpenAPI spec version: 2.64.1
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 0633dcad..a61dd9dd 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.0
+ OpenAPI spec version: 2.64.1
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 da2da599..a011f50d 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.0
+ OpenAPI spec version: 2.64.1
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 b428eeea..74e84788 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.0
+ OpenAPI spec version: 2.64.1
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 e3b7f59d..a10762eb 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.0
+ OpenAPI spec version: 2.64.1
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 f2775cf7..422be5f1 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.0
+ OpenAPI spec version: 2.64.1
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 ac54a085..043b329e 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.0
+ OpenAPI spec version: 2.64.1
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 d7501418..5b41e4f4 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.0
+ OpenAPI spec version: 2.64.1
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 d5b697c3..b14bb8a9 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.0
+ OpenAPI spec version: 2.64.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
diff --git a/intrinio_sdk/models/stock_price_summary.py b/intrinio_sdk/models/stock_price_summary.py
index 8b40d760..0ff150d8 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.0
+ OpenAPI spec version: 2.64.1
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 231cabf2..effcf667 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.0
+ OpenAPI spec version: 2.64.1
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 753975fe..a2129c8f 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.0
+ OpenAPI spec version: 2.64.1
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 c22f327e..b31e7b82 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.0
+ OpenAPI spec version: 2.64.1
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 c1b0cbfa..2a6d3fab 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.0
+ OpenAPI spec version: 2.64.1
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 431e6d35..3fabdc59 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.0
+ OpenAPI spec version: 2.64.1
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 cb61b777..e60bf00f 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.0
+ OpenAPI spec version: 2.64.1
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 8086db40..4ad0c181 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.0
+ OpenAPI spec version: 2.64.1
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 a1d90cec..fb00be0c 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.0
+ OpenAPI spec version: 2.64.1
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 295ab19a..94f01354 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.0
+ OpenAPI spec version: 2.64.1
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 7766b136..8a6ac271 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.0
+ OpenAPI spec version: 2.64.1
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 d588eee6..b78aeab2 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.0
+ OpenAPI spec version: 2.64.1
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 2a3e4cee..c1fd1efe 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.0
+ OpenAPI spec version: 2.64.1
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 544bff8f..0b2070cf 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.0
+ OpenAPI spec version: 2.64.1
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 e140e4c3..ad03202f 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.0
+ OpenAPI spec version: 2.64.1
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 9ba1a8f0..54549078 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.0
+ OpenAPI spec version: 2.64.1
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 d7aef972..f4854af1 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.0
+ OpenAPI spec version: 2.64.1
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 9de71c05..30facf62 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.0
+ OpenAPI spec version: 2.64.1
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 3db5e167..7cac87b1 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.0
+ OpenAPI spec version: 2.64.1
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 9e682f1b..3eeee839 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.0
+ OpenAPI spec version: 2.64.1
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 2895afb0..d7f7b301 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.0
+ OpenAPI spec version: 2.64.1
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 b3de74e2..fa5d43aa 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.0
+ OpenAPI spec version: 2.64.1
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 3fba346f..8c28f459 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.0
+ OpenAPI spec version: 2.64.1
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 4ffdce60..fcf5134d 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.0
+ OpenAPI spec version: 2.64.1
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 41aa0950..46f924fd 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.0
+ OpenAPI spec version: 2.64.1
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 b0774ea8..ce1d322f 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.0
+ OpenAPI spec version: 2.64.1
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 7ac96dd8..172c71a5 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.0
+ OpenAPI spec version: 2.64.1
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 d550573e..f96e6c6c 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.0
+ OpenAPI spec version: 2.64.1
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 1b22be26..e9dab23d 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.0
+ OpenAPI spec version: 2.64.1
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 6828c89c..e44d0b19 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.0
+ OpenAPI spec version: 2.64.1
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 45f2b98a..0b2b00a7 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.0
+ OpenAPI spec version: 2.64.1
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 df879502..652bb0f1 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.0
+ OpenAPI spec version: 2.64.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
diff --git a/intrinio_sdk/rest.py b/intrinio_sdk/rest.py
index c4e487fc..0377ac47 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.0
+ OpenAPI spec version: 2.64.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
diff --git a/setup.py b/setup.py
index 044f9fcc..7f4a5d9b 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.0
+ OpenAPI spec version: 2.64.1
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.0"
+VERSION = "6.29.1"
# 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 fbbd567a..09de8e12 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.0
+ OpenAPI spec version: 2.64.1
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 7e24eb17..04339a4b 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.0
+ OpenAPI spec version: 2.64.1
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 8a1c3c30..32344b51 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.0
+ OpenAPI spec version: 2.64.1
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 70a8b010..2f0be801 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.0
+ OpenAPI spec version: 2.64.1
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 5e9e99ed..e51619f6 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.0
+ OpenAPI spec version: 2.64.1
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 7b554fb2..b6a49753 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.0
+ OpenAPI spec version: 2.64.1
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 9f5e03c2..45f50669 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.0
+ OpenAPI spec version: 2.64.1
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 67ebea63..47865066 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.0
+ OpenAPI spec version: 2.64.1
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 338da73b..5b6d5da4 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.0
+ OpenAPI spec version: 2.64.1
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 5d94ccae..b5a6e94a 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.0
+ OpenAPI spec version: 2.64.1
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 c92f3cc5..42838c0a 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.0
+ OpenAPI spec version: 2.64.1
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 3277c25c..a9d11872 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.0
+ OpenAPI spec version: 2.64.1
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 6bbe9401..8a420e90 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.0
+ OpenAPI spec version: 2.64.1
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 6cadbf22..f36eae47 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.0
+ OpenAPI spec version: 2.64.1
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 7063c28a..a25a9f97 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.0
+ OpenAPI spec version: 2.64.1
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 be3d4a91..b2b77f22 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.0
+ OpenAPI spec version: 2.64.1
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 7d3ab783..28d5b882 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.0
+ OpenAPI spec version: 2.64.1
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 cd52ca86..3e348400 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.0
+ OpenAPI spec version: 2.64.1
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 8b33b851..783c01e2 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.0
+ OpenAPI spec version: 2.64.1
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 9345ce2f..5b7fc8db 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.0
+ OpenAPI spec version: 2.64.1
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 9083fd72..812e8088 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.0
+ OpenAPI spec version: 2.64.1
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 0748525d..2d011f02 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.0
+ OpenAPI spec version: 2.64.1
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 667a9f27..fb4a187b 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.0
+ OpenAPI spec version: 2.64.1
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 289f8b1a..14984799 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.0
+ OpenAPI spec version: 2.64.1
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 019efcb7..72c143b6 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.0
+ OpenAPI spec version: 2.64.1
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 23cbab2e..79b79608 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.0
+ OpenAPI spec version: 2.64.1
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 fcc08146..637610bd 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.0
+ OpenAPI spec version: 2.64.1
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 3c14e2ae..2a1f8e7f 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.0
+ OpenAPI spec version: 2.64.1
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 68d67172..90515785 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.0
+ OpenAPI spec version: 2.64.1
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 d90b31ab..eb18b957 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.0
+ OpenAPI spec version: 2.64.1
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 32139e24..899a3107 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.0
+ OpenAPI spec version: 2.64.1
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 74c0098a..918fa381 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.0
+ OpenAPI spec version: 2.64.1
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 df56fb67..d28eb3a4 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.0
+ OpenAPI spec version: 2.64.1
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 dedddc42..fc6b41dc 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.0
+ OpenAPI spec version: 2.64.1
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 db0ef7d7..3463619e 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.0
+ OpenAPI spec version: 2.64.1
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 c0d3c389..c0f03d8d 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.0
+ OpenAPI spec version: 2.64.1
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 dec87f7f..7af63387 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.0
+ OpenAPI spec version: 2.64.1
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 619184e9..910d0d64 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.0
+ OpenAPI spec version: 2.64.1
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 c3fc2b93..7c05e8b6 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.0
+ OpenAPI spec version: 2.64.1
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 b1cdc740..906189f6 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.0
+ OpenAPI spec version: 2.64.1
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 92d84ccf..a835778f 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.0
+ OpenAPI spec version: 2.64.1
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 5c7b9213..3ce08c91 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.0
+ OpenAPI spec version: 2.64.1
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 153a1dcf..37f02e36 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.0
+ OpenAPI spec version: 2.64.1
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 be7d5a23..41700bdb 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.0
+ OpenAPI spec version: 2.64.1
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 4d0eb51f..ac885bc9 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.0
+ OpenAPI spec version: 2.64.1
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 2392b9a7..e88ba1be 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.0
+ OpenAPI spec version: 2.64.1
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 994cab95..a65e46da 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.0
+ OpenAPI spec version: 2.64.1
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 903b68a7..cc94104a 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.0
+ OpenAPI spec version: 2.64.1
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 26473a63..b87f45ad 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.0
+ OpenAPI spec version: 2.64.1
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 5fc0b97a..58e05b12 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.0
+ OpenAPI spec version: 2.64.1
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 735a9320..5779b08e 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.0
+ OpenAPI spec version: 2.64.1
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 5209a2ea..e3254649 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.0
+ OpenAPI spec version: 2.64.1
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 8084a250..308b59ea 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.0
+ OpenAPI spec version: 2.64.1
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 a4606373..df99729d 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.0
+ OpenAPI spec version: 2.64.1
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 f09c2778..c2799fa0 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.0
+ OpenAPI spec version: 2.64.1
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 69060be5..ba766ec6 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.0
+ OpenAPI spec version: 2.64.1
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 770f4a4b..212f6b1e 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.0
+ OpenAPI spec version: 2.64.1
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 61d106d5..f57b1e94 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.0
+ OpenAPI spec version: 2.64.1
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 0ddfbb85..0c6b75f3 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.0
+ OpenAPI spec version: 2.64.1
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 361a318e..a983b750 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.0
+ OpenAPI spec version: 2.64.1
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 e05427fa..661cce71 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.0
+ OpenAPI spec version: 2.64.1
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 697084e6..85c98108 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.0
+ OpenAPI spec version: 2.64.1
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 9be28799..19fa9e8b 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.0
+ OpenAPI spec version: 2.64.1
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 865e9726..68954997 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.0
+ OpenAPI spec version: 2.64.1
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 019f4cb8..71dd041a 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.0
+ OpenAPI spec version: 2.64.1
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 3aa98a13..d985974f 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.0
+ OpenAPI spec version: 2.64.1
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 0b75fdfe..359f8c86 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.0
+ OpenAPI spec version: 2.64.1
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 46dd3ddf..67f8fc6b 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.0
+ OpenAPI spec version: 2.64.1
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 73a53972..a9fb4148 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.0
+ OpenAPI spec version: 2.64.1
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 ed08a597..0d817129 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.0
+ OpenAPI spec version: 2.64.1
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 f3de1ede..8a2da317 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.0
+ OpenAPI spec version: 2.64.1
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 228013df..6dfc274d 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.0
+ OpenAPI spec version: 2.64.1
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 c68d9db6..242bfb01 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.0
+ OpenAPI spec version: 2.64.1
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 f232202b..2f90db6c 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.0
+ OpenAPI spec version: 2.64.1
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 1cb45a94..7c692dc0 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.0
+ OpenAPI spec version: 2.64.1
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 04a74a8d..650f6d31 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.0
+ OpenAPI spec version: 2.64.1
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 46c5a7b9..8e1c8578 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.0
+ OpenAPI spec version: 2.64.1
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 5dda401d..96248c39 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.0
+ OpenAPI spec version: 2.64.1
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 05b45c3d..7bacc5c2 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.0
+ OpenAPI spec version: 2.64.1
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 f22b482d..5feab07d 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.0
+ OpenAPI spec version: 2.64.1
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 9d06e0f5..c1b4a966 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.0
+ OpenAPI spec version: 2.64.1
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 6e89deef..7ff701ec 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.0
+ OpenAPI spec version: 2.64.1
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 7205c43f..1122b20d 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.0
+ OpenAPI spec version: 2.64.1
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 029f543c..727b871d 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.0
+ OpenAPI spec version: 2.64.1
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 f111628d..594f78ee 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.0
+ OpenAPI spec version: 2.64.1
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 88f24f8f..3df9966f 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.0
+ OpenAPI spec version: 2.64.1
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 ed9ec00c..c5938592 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.0
+ OpenAPI spec version: 2.64.1
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 fbc88d66..e796156b 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.0
+ OpenAPI spec version: 2.64.1
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 a2e53909..adefc315 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.0
+ OpenAPI spec version: 2.64.1
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 9e8f6620..fd71e12c 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.0
+ OpenAPI spec version: 2.64.1
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 797e8b3b..7612e6ae 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.0
+ OpenAPI spec version: 2.64.1
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 b1dfb10d..426e1803 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.0
+ OpenAPI spec version: 2.64.1
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 b0707538..68adeb39 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.0
+ OpenAPI spec version: 2.64.1
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 6da0c848..e6f842eb 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.0
+ OpenAPI spec version: 2.64.1
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 7aceb3b3..aabec3b5 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.0
+ OpenAPI spec version: 2.64.1
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 c7b25426..32262853 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.0
+ OpenAPI spec version: 2.64.1
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 0942983e..60d8622b 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.0
+ OpenAPI spec version: 2.64.1
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 2b14f212..5bb845a7 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.0
+ OpenAPI spec version: 2.64.1
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 ca88cf26..94547360 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.0
+ OpenAPI spec version: 2.64.1
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 e2e56bdd..0c23afb6 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.0
+ OpenAPI spec version: 2.64.1
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 f1c28da6..a81a9064 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.0
+ OpenAPI spec version: 2.64.1
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 db277f68..5b86584a 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.0
+ OpenAPI spec version: 2.64.1
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 cca6467b..edb3ab7a 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.0
+ OpenAPI spec version: 2.64.1
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 98cecc55..2aad7c33 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.0
+ OpenAPI spec version: 2.64.1
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 6ecfffd2..e1ae9d1d 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.0
+ OpenAPI spec version: 2.64.1
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 44565d06..071e9b10 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.0
+ OpenAPI spec version: 2.64.1
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 635d465a..8d16b0e4 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.0
+ OpenAPI spec version: 2.64.1
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 3396f08e..83911230 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.0
+ OpenAPI spec version: 2.64.1
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 d7c6691d..4b764cd5 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.0
+ OpenAPI spec version: 2.64.1
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 69d4a8d9..2f6a6247 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.0
+ OpenAPI spec version: 2.64.1
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 274905ee..41b0260d 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.0
+ OpenAPI spec version: 2.64.1
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 654dad01..61dd421d 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.0
+ OpenAPI spec version: 2.64.1
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 c3a92e48..a5c915b0 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.0
+ OpenAPI spec version: 2.64.1
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 e4096955..7d825ae5 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.0
+ OpenAPI spec version: 2.64.1
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 077d963e..67ecbf60 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.0
+ OpenAPI spec version: 2.64.1
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 c6bcfd97..43c7f530 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.0
+ OpenAPI spec version: 2.64.1
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 39fc3d7b..3934ebc9 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.0
+ OpenAPI spec version: 2.64.1
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 e2b74f56..79775641 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.0
+ OpenAPI spec version: 2.64.1
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 8a660bbf..6b43ff7f 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.0
+ OpenAPI spec version: 2.64.1
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 ae31d167..8f929104 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.0
+ OpenAPI spec version: 2.64.1
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 5c38b8a0..c43b1651 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.0
+ OpenAPI spec version: 2.64.1
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 d728d42d..33c4bbdc 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.0
+ OpenAPI spec version: 2.64.1
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 5c4f6555..4b717a7d 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.0
+ OpenAPI spec version: 2.64.1
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 b6988801..c5852b94 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.0
+ OpenAPI spec version: 2.64.1
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 297354ff..f3e15262 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.0
+ OpenAPI spec version: 2.64.1
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 e582db0d..a4fc1806 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.0
+ OpenAPI spec version: 2.64.1
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 91ce6dd3..25035a68 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.0
+ OpenAPI spec version: 2.64.1
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 a252143f..1bfcbb72 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.0
+ OpenAPI spec version: 2.64.1
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 8f495b01..1fe3c3fe 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.0
+ OpenAPI spec version: 2.64.1
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 83c4ee57..b25ccd96 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.0
+ OpenAPI spec version: 2.64.1
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 0ca1e55b..fee869b1 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.0
+ OpenAPI spec version: 2.64.1
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 1d2ccf5c..6f0b3595 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.0
+ OpenAPI spec version: 2.64.1
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 3b2361d9..fc124d90 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.0
+ OpenAPI spec version: 2.64.1
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 cc5b9242..fab0eb4e 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.0
+ OpenAPI spec version: 2.64.1
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 b7ac745b..d92bbda9 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.0
+ OpenAPI spec version: 2.64.1
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 bffb8cfc..e9425aeb 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.0
+ OpenAPI spec version: 2.64.1
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 e7bc7859..c976579c 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.0
+ OpenAPI spec version: 2.64.1
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 96b170bd..2cbc356c 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.0
+ OpenAPI spec version: 2.64.1
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 78e83ca7..59783b7b 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.0
+ OpenAPI spec version: 2.64.1
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 148b2366..1322d057 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.0
+ OpenAPI spec version: 2.64.1
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 a7a4f541..23b5fb8d 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.0
+ OpenAPI spec version: 2.64.1
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 8322d3f5..fa52071f 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.0
+ OpenAPI spec version: 2.64.1
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 afe7b80e..bc1b934b 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.0
+ OpenAPI spec version: 2.64.1
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 adcd5474..3374df35 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.0
+ OpenAPI spec version: 2.64.1
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 057ea4b7..b17cec2d 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.0
+ OpenAPI spec version: 2.64.1
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 4065957e..678731be 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.0
+ OpenAPI spec version: 2.64.1
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 0d560c35..900dc3a5 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.0
+ OpenAPI spec version: 2.64.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
diff --git a/test/test_company.py b/test/test_company.py
index a47eeba8..a1bf3c8f 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.0
+ OpenAPI spec version: 2.64.1
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 abdb4ef7..ad8ff05c 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.0
+ OpenAPI spec version: 2.64.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
@@ -123,7 +123,7 @@ def test_get_company_news(self):
def test_get_company_news_body(self):
"""Test case for get_company_news_body
- The body of a news article # noqa: E501
+ The body of a news article. This endpoint requires additional authorization beyond basic news access. Please see a representative for details. # noqa: E501
"""
pass
diff --git a/test/test_company_daily_metric.py b/test/test_company_daily_metric.py
index ff94034e..d6659e6f 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.0
+ OpenAPI spec version: 2.64.1
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 2e6e0cb5..808f5b88 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.0
+ OpenAPI spec version: 2.64.1
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 ca0fe612..7392ffdb 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.0
+ OpenAPI spec version: 2.64.1
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 3d7309d0..d486c0ec 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.0
+ OpenAPI spec version: 2.64.1
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 aae0ccb3..75f887ca 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.0
+ OpenAPI spec version: 2.64.1
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 6f0620bb..194d60f1 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.0
+ OpenAPI spec version: 2.64.1
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 426f2bd8..88d6c740 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.0
+ OpenAPI spec version: 2.64.1
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 5932f383..b750a82d 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.0
+ OpenAPI spec version: 2.64.1
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 57e1e640..a78e5be4 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.0
+ OpenAPI spec version: 2.64.1
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 8e3a67ea..ce46b5d2 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.0
+ OpenAPI spec version: 2.64.1
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 8e390920..9eb20339 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.0
+ OpenAPI spec version: 2.64.1
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 3fd1ed4a..ed21474a 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.0
+ OpenAPI spec version: 2.64.1
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 fc88c07d..cb5193b6 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.0
+ OpenAPI spec version: 2.64.1
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 521f6bdf..e3d9a60d 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.0
+ OpenAPI spec version: 2.64.1
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 9f939c33..5a8f4f7b 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.0
+ OpenAPI spec version: 2.64.1
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 281a6ac6..e0f6e71e 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.0
+ OpenAPI spec version: 2.64.1
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 09015960..14984d4d 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.0
+ OpenAPI spec version: 2.64.1
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 9dd7c336..b0c9348d 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.0
+ OpenAPI spec version: 2.64.1
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 0251675f..fa32b316 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.0
+ OpenAPI spec version: 2.64.1
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 d9600214..88abb749 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.0
+ OpenAPI spec version: 2.64.1
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 296f72a5..5699fb36 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.0
+ OpenAPI spec version: 2.64.1
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 69fb4294..bc2613f4 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.0
+ OpenAPI spec version: 2.64.1
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 3e5cd39e..903f1d52 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.0
+ OpenAPI spec version: 2.64.1
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 697e09fd..c02bcf32 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.0
+ OpenAPI spec version: 2.64.1
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 539d1b64..6498ce04 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.0
+ OpenAPI spec version: 2.64.1
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 dff6a923..646606ce 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.0
+ OpenAPI spec version: 2.64.1
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 9b31d01a..07368c67 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.0
+ OpenAPI spec version: 2.64.1
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 59c71c7e..f54753b4 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.0
+ OpenAPI spec version: 2.64.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
diff --git a/test/test_etf.py b/test/test_etf.py
index 5f5130e4..67edf493 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.0
+ OpenAPI spec version: 2.64.1
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 bb9db91e..93a7bf83 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.0
+ OpenAPI spec version: 2.64.1
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 789e296c..dc7f20d6 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.0
+ OpenAPI spec version: 2.64.1
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 961b4b41..f6845763 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.0
+ OpenAPI spec version: 2.64.1
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 019429a8..cf2fcad2 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.0
+ OpenAPI spec version: 2.64.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
diff --git a/test/test_filing.py b/test/test_filing.py
index cbf5de64..2868dc94 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.0
+ OpenAPI spec version: 2.64.1
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 756ddc2f..9ae79a21 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.0
+ OpenAPI spec version: 2.64.1
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 39a0b784..37f13912 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.0
+ OpenAPI spec version: 2.64.1
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 6d4c0721..234097a5 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.0
+ OpenAPI spec version: 2.64.1
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 a904a8ae..9176178d 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.0
+ OpenAPI spec version: 2.64.1
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 d6c9d8d2..ae91a2ac 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.0
+ OpenAPI spec version: 2.64.1
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 6bfc3acd..dc54b4d9 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.0
+ OpenAPI spec version: 2.64.1
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 1c2b7950..00d4ac30 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.0
+ OpenAPI spec version: 2.64.1
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 dc69653a..5c263a79 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.0
+ OpenAPI spec version: 2.64.1
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 fc4b1981..056f1e96 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.0
+ OpenAPI spec version: 2.64.1
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 7c7aaf71..eb2a90bf 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.0
+ OpenAPI spec version: 2.64.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
diff --git a/test/test_fundamental.py b/test/test_fundamental.py
index 7da5a01d..c7a5e6a1 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.0
+ OpenAPI spec version: 2.64.1
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 82418f3b..303a32b1 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.0
+ OpenAPI spec version: 2.64.1
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 b56a57fe..6244c952 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.0
+ OpenAPI spec version: 2.64.1
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 9d714d44..290f7857 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.0
+ OpenAPI spec version: 2.64.1
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 2031a3b7..fa3ee976 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.0
+ OpenAPI spec version: 2.64.1
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 8d84e6cb..bef2c65c 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.0
+ OpenAPI spec version: 2.64.1
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 7442ac28..04d8e95f 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.0
+ OpenAPI spec version: 2.64.1
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 f8742690..57a6c2c0 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.0
+ OpenAPI spec version: 2.64.1
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 7b19d439..d2f8bfc5 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.0
+ OpenAPI spec version: 2.64.1
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 534f0b7f..e81f7420 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.0
+ OpenAPI spec version: 2.64.1
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 6c38cdb2..b6c95da3 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.0
+ OpenAPI spec version: 2.64.1
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 a14aec78..56ba4004 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.0
+ OpenAPI spec version: 2.64.1
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 f1f914f4..2c83a931 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.0
+ OpenAPI spec version: 2.64.1
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 4985adce..2bac2187 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.0
+ OpenAPI spec version: 2.64.1
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 f05dc8d8..6aa87234 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.0
+ OpenAPI spec version: 2.64.1
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 81fc0056..e0ff03ec 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.0
+ OpenAPI spec version: 2.64.1
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 0627c783..3499583c 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.0
+ OpenAPI spec version: 2.64.1
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 cdfff2c6..9477e86a 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.0
+ OpenAPI spec version: 2.64.1
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 12a8b106..5b0c85c8 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.0
+ OpenAPI spec version: 2.64.1
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 8dc3e213..0f4d3a2f 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.0
+ OpenAPI spec version: 2.64.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
diff --git a/test/test_municipality.py b/test/test_municipality.py
index 787ae769..ff414367 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.0
+ OpenAPI spec version: 2.64.1
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 76c745aa..c69e124b 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.0
+ OpenAPI spec version: 2.64.1
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 ba7d3bcf..ef890d9f 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.0
+ OpenAPI spec version: 2.64.1
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 d6be8ddd..2215903d 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.0
+ OpenAPI spec version: 2.64.1
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 79d238e2..e4f9c789 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.0
+ OpenAPI spec version: 2.64.1
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 150ec4ba..c11217f1 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.0
+ OpenAPI spec version: 2.64.1
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 ee6e9e49..ac34584a 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.0
+ OpenAPI spec version: 2.64.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
diff --git a/test/test_option.py b/test/test_option.py
index 901871b4..da30c384 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.0
+ OpenAPI spec version: 2.64.1
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 7be7a6af..b16c460d 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.0
+ OpenAPI spec version: 2.64.1
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 09255766..1630a47a 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.0
+ OpenAPI spec version: 2.64.1
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 cce11ccb..74c810ad 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.0
+ OpenAPI spec version: 2.64.1
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 0e049f33..1eca5fe2 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.0
+ OpenAPI spec version: 2.64.1
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 64c91eec..7c9e4a0c 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.0
+ OpenAPI spec version: 2.64.1
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 1c8a6f72..f8016f7b 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.0
+ OpenAPI spec version: 2.64.1
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 298d434a..a498f943 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.0
+ OpenAPI spec version: 2.64.1
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 812b3758..dea6d6b2 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.0
+ OpenAPI spec version: 2.64.1
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 221320b4..e873f15d 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.0
+ OpenAPI spec version: 2.64.1
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 7a8a9189..6fc2b86c 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.0
+ OpenAPI spec version: 2.64.1
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 ea3e13c6..c3a5c896 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.0
+ OpenAPI spec version: 2.64.1
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 b6fa47bd..f07c265d 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.0
+ OpenAPI spec version: 2.64.1
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 6bc1a277..ad655299 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.0
+ OpenAPI spec version: 2.64.1
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 e3d58c1b..58fe1d0c 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.0
+ OpenAPI spec version: 2.64.1
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 325807aa..11e58abf 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.0
+ OpenAPI spec version: 2.64.1
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 44036f40..c94ce249 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.0
+ OpenAPI spec version: 2.64.1
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 ccc8e988..52b2f420 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.0
+ OpenAPI spec version: 2.64.1
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 6d9133fb..7159da71 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.0
+ OpenAPI spec version: 2.64.1
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 e9ef6df6..634c97dd 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.0
+ OpenAPI spec version: 2.64.1
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 bde4a984..d6939f1e 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.0
+ OpenAPI spec version: 2.64.1
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 2d4e5160..371cdf30 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.0
+ OpenAPI spec version: 2.64.1
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 6e6ab3e5..1e3f1bce 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.0
+ OpenAPI spec version: 2.64.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
diff --git a/test/test_owner.py b/test/test_owner.py
index 76874f38..adb14088 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.0
+ OpenAPI spec version: 2.64.1
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 a6b822ff..9b063ba1 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.0
+ OpenAPI spec version: 2.64.1
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 9b94602c..dc38b3e2 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.0
+ OpenAPI spec version: 2.64.1
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 4746192e..a4e554fa 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.0
+ OpenAPI spec version: 2.64.1
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 4ba4978a..5c5545c3 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.0
+ OpenAPI spec version: 2.64.1
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 fbb65743..7eb54927 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.0
+ OpenAPI spec version: 2.64.1
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 1110e7c9..f8f34f11 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.0
+ OpenAPI spec version: 2.64.1
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 aa7ab30d..11c98159 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.0
+ OpenAPI spec version: 2.64.1
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 aecb4205..6fe23367 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.0
+ OpenAPI spec version: 2.64.1
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 dfc12da0..4cf9728f 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.0
+ OpenAPI spec version: 2.64.1
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 d4c5b381..d45f7d40 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.0
+ OpenAPI spec version: 2.64.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
diff --git a/test/test_security.py b/test/test_security.py
index e59b4473..ac727736 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.0
+ OpenAPI spec version: 2.64.1
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 b102491f..71fd14c2 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.0
+ OpenAPI spec version: 2.64.1
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 8d91fbac..3e3b4005 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.0
+ OpenAPI spec version: 2.64.1
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 ebecc609..dfef58b2 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.0
+ OpenAPI spec version: 2.64.1
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 5a11bc68..4cb0b2e6 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.0
+ OpenAPI spec version: 2.64.1
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 88e3e111..66b7f4ad 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.0
+ OpenAPI spec version: 2.64.1
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 e7638503..a08da9e5 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.0
+ OpenAPI spec version: 2.64.1
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 39ad251f..37348497 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.0
+ OpenAPI spec version: 2.64.1
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 d314e3c1..edb3955a 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.0
+ OpenAPI spec version: 2.64.1
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 805a6118..b99d55c7 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.0
+ OpenAPI spec version: 2.64.1
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 eee37705..9d6e652b 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.0
+ OpenAPI spec version: 2.64.1
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 874d0cbe..8299f701 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.0
+ OpenAPI spec version: 2.64.1
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 4ee61016..90688ce6 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.0
+ OpenAPI spec version: 2.64.1
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 88f164bd..ee9b0736 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.0
+ OpenAPI spec version: 2.64.1
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 85457ef3..ff7f343f 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.0
+ OpenAPI spec version: 2.64.1
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 c263f567..20239242 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.0
+ OpenAPI spec version: 2.64.1
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 6410bbf5..747ab18a 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.0
+ OpenAPI spec version: 2.64.1
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 4cbf5c65..a7c9806f 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.0
+ OpenAPI spec version: 2.64.1
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 5c52af53..9641b1da 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.0
+ OpenAPI spec version: 2.64.1
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 f4648aaf..f1216935 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.0
+ OpenAPI spec version: 2.64.1
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 61582498..3139a64a 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.0
+ OpenAPI spec version: 2.64.1
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 24418293..7d3319ad 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.0
+ OpenAPI spec version: 2.64.1
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 90587f8d..87da28bb 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.0
+ OpenAPI spec version: 2.64.1
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 6b6c6fac..8db733f1 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.0
+ OpenAPI spec version: 2.64.1
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 96e3345e..841c83bf 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.0
+ OpenAPI spec version: 2.64.1
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 b1763caf..e5d337d6 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.0
+ OpenAPI spec version: 2.64.1
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 65f8e933..2e86b0cb 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.0
+ OpenAPI spec version: 2.64.1
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 25845a5f..fe38ba0d 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.0
+ OpenAPI spec version: 2.64.1
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 3377ccea..53e25bf8 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.0
+ OpenAPI spec version: 2.64.1
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 c036be12..9072e48f 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.0
+ OpenAPI spec version: 2.64.1
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 a93fdc30..2b599e34 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.0
+ OpenAPI spec version: 2.64.1
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 bee70dea..76716d93 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.0
+ OpenAPI spec version: 2.64.1
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 51625f23..05d9d176 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.0
+ OpenAPI spec version: 2.64.1
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 a823b2c6..c6613246 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.0
+ OpenAPI spec version: 2.64.1
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 8ac37a18..51a657d6 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.0
+ OpenAPI spec version: 2.64.1
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 894ad74d..2e81b21f 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.0
+ OpenAPI spec version: 2.64.1
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 01ee4c2f..53e962eb 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.0
+ OpenAPI spec version: 2.64.1
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 b072b0e2..8f968fdd 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.0
+ OpenAPI spec version: 2.64.1
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 fa29b7fd..45d2a19e 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.0
+ OpenAPI spec version: 2.64.1
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 a9c126a6..e2bb2242 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.0
+ OpenAPI spec version: 2.64.1
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 79c742ee..479bb3ed 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.0
+ OpenAPI spec version: 2.64.1
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 d3dd9d2f..86d62c05 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.0
+ OpenAPI spec version: 2.64.1
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 fd00ad42..ad8fe079 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.0
+ OpenAPI spec version: 2.64.1
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 175b04ad..3598e0a5 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.0
+ OpenAPI spec version: 2.64.1
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 b4a3917b..6472e17b 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.0
+ OpenAPI spec version: 2.64.1
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 da0915a2..e212568a 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.0
+ OpenAPI spec version: 2.64.1
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 91df16b3..942fda41 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.0
+ OpenAPI spec version: 2.64.1
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 b9a567f7..2c6d5de9 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.0
+ OpenAPI spec version: 2.64.1
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 f87aa6ef..9e9bf4ce 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.0
+ OpenAPI spec version: 2.64.1
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 9387535e..770c6d9f 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.0
+ OpenAPI spec version: 2.64.1
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 d60a19d4..aa192e8d 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.0
+ OpenAPI spec version: 2.64.1
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 d945944a..71efcd39 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.0
+ OpenAPI spec version: 2.64.1
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 f0b8c832..1839a261 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.0
+ OpenAPI spec version: 2.64.1
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 a62bb83b..9f4c18d9 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.0
+ OpenAPI spec version: 2.64.1
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 b015c36c..a1f2f69f 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.0
+ OpenAPI spec version: 2.64.1
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 399f6389..7de89714 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.0
+ OpenAPI spec version: 2.64.1
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 50b8bf26..396f58da 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.0
+ OpenAPI spec version: 2.64.1
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 f2b16351..668043be 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.0
+ OpenAPI spec version: 2.64.1
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 2ab72a4c..528f3897 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.0
+ OpenAPI spec version: 2.64.1
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 6828ae99..74f1fd1e 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.0
+ OpenAPI spec version: 2.64.1
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 8516aeb5..d6b3061a 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.0
+ OpenAPI spec version: 2.64.1
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 9829f472..e61d49cc 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.0
+ OpenAPI spec version: 2.64.1
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 9509719d..6f4c0f06 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.0
+ OpenAPI spec version: 2.64.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""