diff --git a/Intrinio.SDK.nuspec b/Intrinio.SDK.nuspec
index 9634a0c..34c4783 100644
--- a/Intrinio.SDK.nuspec
+++ b/Intrinio.SDK.nuspec
@@ -6,7 +6,7 @@
Intrinio
- 7.7.0
+ 7.7.1
Intrinio
diff --git a/README.md b/README.md
index 0da210b..7324915 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: 7.7.0
+- API version: 2.64.1
+- Package version: 7.7.1
@@ -138,7 +138,7 @@ Class | Method | HTTP request | Description
*CompanyApi* | [**GetCompanyHistoricalData**](docs/CompanyApi.md#getcompanyhistoricaldata) | **GET** /companies/{identifier}/historical_data/{tag} | Historical Data for Company
*CompanyApi* | [**GetCompanyIpos**](docs/CompanyApi.md#getcompanyipos) | **GET** /companies/ipos | IPOs
*CompanyApi* | [**GetCompanyNews**](docs/CompanyApi.md#getcompanynews) | **GET** /companies/{identifier}/news | All News by Company
-*CompanyApi* | [**GetCompanyNewsBody**](docs/CompanyApi.md#getcompanynewsbody) | **GET** /companies/news/body | The body of a news article
+*CompanyApi* | [**GetCompanyNewsBody**](docs/CompanyApi.md#getcompanynewsbody) | **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* | [**GetCompanyPublicFloat**](docs/CompanyApi.md#getcompanypublicfloat) | **GET** /companies/{identifier}/public_float | Get Company's public float
*CompanyApi* | [**GetCompanySecurities**](docs/CompanyApi.md#getcompanysecurities) | **GET** /companies/{identifier}/securities | All Securities by Company
*CompanyApi* | [**InsiderTransactionFilingsByCompany**](docs/CompanyApi.md#insidertransactionfilingsbycompany) | **GET** /companies/{identifier}/insider_transaction_filings | Insider Transaction Filings by Company
diff --git a/docs/ApiResponseCompanyNewsBody.md b/docs/ApiResponseCompanyNewsBody.md
index faec648..2c02060 100644
--- a/docs/ApiResponseCompanyNewsBody.md
+++ b/docs/ApiResponseCompanyNewsBody.md
@@ -9,7 +9,7 @@
Name | Type | Description
------------ | ------------- | -------------
-**Body** | string | The article body. Requires additional access.
+**Body** | string | The article body.
[//]: # (END_DEFINITION)
diff --git a/docs/ApiResponseSecurityQuote.md b/docs/ApiResponseSecurityQuote.md
index 04c4b81..cd16378 100644
--- a/docs/ApiResponseSecurityQuote.md
+++ b/docs/ApiResponseSecurityQuote.md
@@ -17,6 +17,7 @@ Name | Type | Description
**High** | decimal? | The highest price from the latest day of trading.
**Low** | decimal? | The lowest price from the latest day of trading.
**ExchangeVolume** | decimal? | The volume of the security from the source.
+**MarketVolume** | decimal? | The volume of the security for the entire market.
**EodFiftyTwoWeekHigh** | decimal? | The 52 week high price.
**EodFiftyTwoWeekLow** | decimal? | The 52 week low price.
**Marketcap** | decimal? | The current market cap.
diff --git a/docs/CompanyApi.md b/docs/CompanyApi.md
index b6d2c09..6e16cc7 100644
--- a/docs/CompanyApi.md
+++ b/docs/CompanyApi.md
@@ -17,7 +17,7 @@ Method | HTTP request | Description
[**GetCompanyHistoricalData**](CompanyApi.md#getcompanyhistoricaldata) | **GET** /companies/{identifier}/historical_data/{tag} | Historical Data for Company
[**GetCompanyIpos**](CompanyApi.md#getcompanyipos) | **GET** /companies/ipos | IPOs
[**GetCompanyNews**](CompanyApi.md#getcompanynews) | **GET** /companies/{identifier}/news | All News by Company
-[**GetCompanyNewsBody**](CompanyApi.md#getcompanynewsbody) | **GET** /companies/news/body | The body of a news article
+[**GetCompanyNewsBody**](CompanyApi.md#getcompanynewsbody) | **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.
[**GetCompanyPublicFloat**](CompanyApi.md#getcompanypublicfloat) | **GET** /companies/{identifier}/public_float | Get Company's public float
[**GetCompanySecurities**](CompanyApi.md#getcompanysecurities) | **GET** /companies/{identifier}/securities | All Securities by Company
[**InsiderTransactionFilingsByCompany**](CompanyApi.md#insidertransactionfilingsbycompany) | **GET** /companies/{identifier}/insider_transaction_filings | Insider Transaction Filings by Company
@@ -1362,7 +1362,7 @@ Name | Type | Description | Notes
> ApiResponseCompanyNewsBody GetCompanyNewsBody (string newsStoryId, DateTime? publicationDate, string specificSource = null, string nextPage = null)
-#### 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 4aba6ab..c6ea792 100644
--- a/docs/SecurityApi.md
+++ b/docs/SecurityApi.md
@@ -4722,7 +4722,7 @@ namespace Example
var securityApi = new SecurityApi();
string identifier = "AAPL";
- List source = "iex";
+ List source = "iex,delayed_sip";
RealtimeStockPrice result = securityApi.GetSecurityRealtimePrice(identifier, source);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
@@ -4741,7 +4741,7 @@ namespace Example
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**identifier** | string| A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) |
- **source** | List<string>| Return the realtime price from the specified data source. If no source is specified, the best source available is used. | [optional]
+ **source** | List<string>| 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 838aa27..9d1ae9b 100644
--- a/docs/StockExchangeApi.md
+++ b/docs/StockExchangeApi.md
@@ -378,7 +378,7 @@ Name | Type | Description | Notes
**endDate** | DateTime?| The end of the date range you're querying. May not be used with date parameter. | [optional]
**pageSize** | int?| The number of results to return | [optional] [default to 100]
**nextPage** | string| Gets the next page of data from a previous API call | [optional]
- **tickers** | [**List<string>**](string.md)| The list of ticker symbols to filter to. | [optional]
+ **tickers** | [**List<string>**](string.md)| The comma-delimited list of ticker symbols to filter down to. If not provided, the entire stock exchange is returned. | [optional]
**nextPage2** | string| Gets the next page of data from a previous API call | [optional]
@@ -450,7 +450,7 @@ namespace Example
var stockExchangeApi = new StockExchangeApi();
string identifier = "USCOMP";
- List source = null;
+ List source = "iex,delayed_sip";
bool? activeOnly = null;
int? pageSize = 100;
var tickers = new List();
@@ -473,10 +473,10 @@ namespace Example
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**identifier** | string| A Stock Exchange identifier (MIC or Intrinio ID) |
- **source** | List<string>| Return realtime prices from the specified data source. If no source is specified, all sources are used. | [optional]
+ **source** | List<string>| Return realtime prices from the specified comma-delimited data sources. If no source is specified, all sources available to user are used. | [optional]
**activeOnly** | bool?| Returns prices only from the most recent trading day. | [optional]
**pageSize** | int?| The number of results to return | [optional] [default to 100]
- **tickers** | [**List<string>**](string.md)| The list of ticker symbols to filter to. | [optional]
+ **tickers** | [**List<string>**](string.md)| The comma-delimited list of ticker symbols to filter to. If not provided, the entire stock exchange is returned. | [optional]
**nextPage** | string| Gets the next page of data from a previous API call | [optional]
diff --git a/src/Intrinio.SDK.Test/Intrinio.SDK.Test.csproj b/src/Intrinio.SDK.Test/Intrinio.SDK.Test.csproj
index 12ad3db..651740c 100644
--- a/src/Intrinio.SDK.Test/Intrinio.SDK.Test.csproj
+++ b/src/Intrinio.SDK.Test/Intrinio.SDK.Test.csproj
@@ -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.
- OpenAPI spec version: 2.64.0
+ OpenAPI spec version: 2.64.1
-->
diff --git a/src/Intrinio.SDK.Test/Model/ApiResponseSecurityQuoteTests.cs b/src/Intrinio.SDK.Test/Model/ApiResponseSecurityQuoteTests.cs
index a620448..8154b72 100644
--- a/src/Intrinio.SDK.Test/Model/ApiResponseSecurityQuoteTests.cs
+++ b/src/Intrinio.SDK.Test/Model/ApiResponseSecurityQuoteTests.cs
@@ -123,6 +123,14 @@ public void ExchangeVolumeTest()
// TODO unit test for the property 'ExchangeVolume'
}
///
+ /// Test the property 'MarketVolume'
+ ///
+ [Test]
+ public void MarketVolumeTest()
+ {
+ // TODO unit test for the property 'MarketVolume'
+ }
+ ///
/// Test the property 'EodFiftyTwoWeekHigh'
///
[Test]
diff --git a/src/Intrinio.SDK/Api/CompanyApi.cs b/src/Intrinio.SDK/Api/CompanyApi.cs
index 565a13f..4c7247c 100644
--- a/src/Intrinio.SDK/Api/CompanyApi.cs
+++ b/src/Intrinio.SDK/Api/CompanyApi.cs
@@ -453,7 +453,7 @@ public interface ICompanyApi : IApiAccessor
/// ApiResponse of ApiResponseCompanyNews
ApiResponse GetCompanyNewsWithHttpInfo (string identifier, string specificSource = null, int? pageSize = null, string sentiment = null, string topic = null, string security = null, DateTime? startDate = null, DateTime? endDate = null, string language = null, int? wordCountGreaterThan = null, int? wordCountLessThan = null, bool? isSpam = null, decimal? businessRelevanceGreaterThan = null, decimal? businessRelevanceLessThan = null, string nextPage = null);
///
- /// 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.
@@ -467,7 +467,7 @@ public interface ICompanyApi : IApiAccessor
ApiResponseCompanyNewsBody GetCompanyNewsBody (string newsStoryId, DateTime? publicationDate, string specificSource = null, string nextPage = null);
///
- /// 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.
@@ -1127,7 +1127,7 @@ public interface ICompanyApi : IApiAccessor
/// Task of ApiResponse (ApiResponseCompanyNews)
System.Threading.Tasks.Task> GetCompanyNewsAsyncWithHttpInfo (string identifier, string specificSource = null, int? pageSize = null, string sentiment = null, string topic = null, string security = null, DateTime? startDate = null, DateTime? endDate = null, string language = null, int? wordCountGreaterThan = null, int? wordCountLessThan = null, bool? isSpam = null, decimal? businessRelevanceGreaterThan = null, decimal? businessRelevanceLessThan = null, string nextPage = null);
///
- /// 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.
@@ -1141,7 +1141,7 @@ public interface ICompanyApi : IApiAccessor
System.Threading.Tasks.Task GetCompanyNewsBodyAsync (string newsStoryId, DateTime? publicationDate, string specificSource = null, string nextPage = null);
///
- /// 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.
@@ -3859,7 +3859,7 @@ public async System.Threading.Tasks.Task> Ge
}
///
- /// The body of a news article Returns the news article body.
+ /// 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.
///
/// Thrown when fails to make API call
/// The identifier of the news story.
@@ -3874,7 +3874,7 @@ public ApiResponseCompanyNewsBody GetCompanyNewsBody (string newsStoryId, DateTi
}
///
- /// The body of a news article Returns the news article body.
+ /// 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.
///
/// Thrown when fails to make API call
/// The identifier of the news story.
@@ -3944,7 +3944,7 @@ public ApiResponse< ApiResponseCompanyNewsBody > GetCompanyNewsBodyWithHttpInfo
}
///
- /// The body of a news article Returns the news article body.
+ /// 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.
///
/// Thrown when fails to make API call
/// The identifier of the news story.
@@ -3960,7 +3960,7 @@ public async System.Threading.Tasks.Task GetCompanyN
}
///
- /// The body of a news article Returns the news article body.
+ /// 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.
///
/// Thrown when fails to make API call
/// The identifier of the news story.
diff --git a/src/Intrinio.SDK/Api/SecurityApi.cs b/src/Intrinio.SDK/Api/SecurityApi.cs
index ae90ac7..b6bfd65 100644
--- a/src/Intrinio.SDK/Api/SecurityApi.cs
+++ b/src/Intrinio.SDK/Api/SecurityApi.cs
@@ -1472,7 +1472,7 @@ public interface ISecurityApi : IApiAccessor
///
/// Thrown when fails to make API call
/// A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID)
- /// Return the realtime price from the specified data source. If no source is specified, the best source available is used. (optional)
+ /// Return the realtime price from the specified comma-delimited data sources. If no source is specified, the best source available is used. (optional)
/// RealtimeStockPrice
RealtimeStockPrice GetSecurityRealtimePrice (string identifier, List source = null);
@@ -1484,7 +1484,7 @@ public interface ISecurityApi : IApiAccessor
///
/// Thrown when fails to make API call
/// A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID)
- /// Return the realtime price from the specified data source. If no source is specified, the best source available is used. (optional)
+ /// Return the realtime price from the specified comma-delimited data sources. If no source is specified, the best source available is used. (optional)
/// ApiResponse of RealtimeStockPrice
ApiResponse GetSecurityRealtimePriceWithHttpInfo (string identifier, List source = null);
///
@@ -3308,7 +3308,7 @@ public interface ISecurityApi : IApiAccessor
///
/// Thrown when fails to make API call
/// A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID)
- /// Return the realtime price from the specified data source. If no source is specified, the best source available is used. (optional)
+ /// Return the realtime price from the specified comma-delimited data sources. If no source is specified, the best source available is used. (optional)
/// Task of RealtimeStockPrice
System.Threading.Tasks.Task GetSecurityRealtimePriceAsync (string identifier, List source = null);
@@ -3320,7 +3320,7 @@ public interface ISecurityApi : IApiAccessor
///
/// Thrown when fails to make API call
/// A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID)
- /// Return the realtime price from the specified data source. If no source is specified, the best source available is used. (optional)
+ /// Return the realtime price from the specified comma-delimited data sources. If no source is specified, the best source available is used. (optional)
/// Task of ApiResponse (RealtimeStockPrice)
System.Threading.Tasks.Task> GetSecurityRealtimePriceAsyncWithHttpInfo (string identifier, List source = null);
///
@@ -12097,7 +12097,7 @@ public async System.Threading.Tasks.Task>
///
/// Thrown when fails to make API call
/// A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID)
- /// Return the realtime price from the specified data source. If no source is specified, the best source available is used. (optional)
+ /// Return the realtime price from the specified comma-delimited data sources. If no source is specified, the best source available is used. (optional)
/// RealtimeStockPrice
public RealtimeStockPrice GetSecurityRealtimePrice (string identifier, List source = null)
{
@@ -12110,7 +12110,7 @@ public RealtimeStockPrice GetSecurityRealtimePrice (string identifier, List
/// Thrown when fails to make API call
/// A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID)
- /// Return the realtime price from the specified data source. If no source is specified, the best source available is used. (optional)
+ /// Return the realtime price from the specified comma-delimited data sources. If no source is specified, the best source available is used. (optional)
/// ApiResponse of RealtimeStockPrice
public ApiResponse< RealtimeStockPrice > GetSecurityRealtimePriceWithHttpInfo (string identifier, List source = null)
@@ -12173,7 +12173,7 @@ public ApiResponse< RealtimeStockPrice > GetSecurityRealtimePriceWithHttpInfo (s
///
/// Thrown when fails to make API call
/// A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID)
- /// Return the realtime price from the specified data source. If no source is specified, the best source available is used. (optional)
+ /// Return the realtime price from the specified comma-delimited data sources. If no source is specified, the best source available is used. (optional)
/// Task of RealtimeStockPrice
public async System.Threading.Tasks.Task GetSecurityRealtimePriceAsync (string identifier, List source = null)
{
@@ -12187,7 +12187,7 @@ public async System.Threading.Tasks.Task GetSecurityRealtime
///
/// Thrown when fails to make API call
/// A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID)
- /// Return the realtime price from the specified data source. If no source is specified, the best source available is used. (optional)
+ /// Return the realtime price from the specified comma-delimited data sources. If no source is specified, the best source available is used. (optional)
/// Task of ApiResponse (RealtimeStockPrice)
public async System.Threading.Tasks.Task> GetSecurityRealtimePriceAsyncWithHttpInfo (string identifier, List source = null)
{
diff --git a/src/Intrinio.SDK/Api/StockExchangeApi.cs b/src/Intrinio.SDK/Api/StockExchangeApi.cs
index a246181..0a5cb72 100644
--- a/src/Intrinio.SDK/Api/StockExchangeApi.cs
+++ b/src/Intrinio.SDK/Api/StockExchangeApi.cs
@@ -105,7 +105,7 @@ public interface IStockExchangeApi : IApiAccessor
/// The end of the date range you're querying. May not be used with date parameter. (optional)
/// The number of results to return (optional, default to 100)
/// Gets the next page of data from a previous API call (optional)
- /// The list of ticker symbols to filter to. (optional)
+ /// The comma-delimited list of ticker symbols to filter down to. If not provided, the entire stock exchange is returned. (optional)
/// Gets the next page of data from a previous API call (optional)
/// ApiResponseStockExchangeStockPrices
ApiResponseStockExchangeStockPrices GetStockExchangePrices (string identifier, DateTime? date = null, DateTime? startDate = null, DateTime? endDate = null, int? pageSize = null, string nextPage = null, List tickers = null, string nextPage2 = null);
@@ -123,7 +123,7 @@ public interface IStockExchangeApi : IApiAccessor
/// The end of the date range you're querying. May not be used with date parameter. (optional)
/// The number of results to return (optional, default to 100)
/// Gets the next page of data from a previous API call (optional)
- /// The list of ticker symbols to filter to. (optional)
+ /// The comma-delimited list of ticker symbols to filter down to. If not provided, the entire stock exchange is returned. (optional)
/// Gets the next page of data from a previous API call (optional)
/// ApiResponse of ApiResponseStockExchangeStockPrices
ApiResponse GetStockExchangePricesWithHttpInfo (string identifier, DateTime? date = null, DateTime? startDate = null, DateTime? endDate = null, int? pageSize = null, string nextPage = null, List tickers = null, string nextPage2 = null);
@@ -135,10 +135,10 @@ public interface IStockExchangeApi : IApiAccessor
///
/// Thrown when fails to make API call
/// A Stock Exchange identifier (MIC or Intrinio ID)
- /// Return realtime prices from the specified data source. If no source is specified, all sources are used. (optional)
+ /// Return realtime prices from the specified comma-delimited data sources. If no source is specified, all sources available to user are used. (optional)
/// Returns prices only from the most recent trading day. (optional)
/// The number of results to return (optional, default to 100)
- /// The list of ticker symbols to filter to. (optional)
+ /// The comma-delimited list of ticker symbols to filter to. If not provided, the entire stock exchange is returned. (optional)
/// Gets the next page of data from a previous API call (optional)
/// ApiResponseStockExchangeRealtimeStockPrices
ApiResponseStockExchangeRealtimeStockPrices GetStockExchangeRealtimePrices (string identifier, List source = null, bool? activeOnly = null, int? pageSize = null, List tickers = null, string nextPage = null);
@@ -151,10 +151,10 @@ public interface IStockExchangeApi : IApiAccessor
///
/// Thrown when fails to make API call
/// A Stock Exchange identifier (MIC or Intrinio ID)
- /// Return realtime prices from the specified data source. If no source is specified, all sources are used. (optional)
+ /// Return realtime prices from the specified comma-delimited data sources. If no source is specified, all sources available to user are used. (optional)
/// Returns prices only from the most recent trading day. (optional)
/// The number of results to return (optional, default to 100)
- /// The list of ticker symbols to filter to. (optional)
+ /// The comma-delimited list of ticker symbols to filter to. If not provided, the entire stock exchange is returned. (optional)
/// Gets the next page of data from a previous API call (optional)
/// ApiResponse of ApiResponseStockExchangeRealtimeStockPrices
ApiResponse GetStockExchangeRealtimePricesWithHttpInfo (string identifier, List source = null, bool? activeOnly = null, int? pageSize = null, List tickers = null, string nextPage = null);
@@ -273,7 +273,7 @@ public interface IStockExchangeApi : IApiAccessor
/// The end of the date range you're querying. May not be used with date parameter. (optional)
/// The number of results to return (optional, default to 100)
/// Gets the next page of data from a previous API call (optional)
- /// The list of ticker symbols to filter to. (optional)
+ /// The comma-delimited list of ticker symbols to filter down to. If not provided, the entire stock exchange is returned. (optional)
/// Gets the next page of data from a previous API call (optional)
/// Task of ApiResponseStockExchangeStockPrices
System.Threading.Tasks.Task GetStockExchangePricesAsync (string identifier, DateTime? date = null, DateTime? startDate = null, DateTime? endDate = null, int? pageSize = null, string nextPage = null, List tickers = null, string nextPage2 = null);
@@ -291,7 +291,7 @@ public interface IStockExchangeApi : IApiAccessor
/// The end of the date range you're querying. May not be used with date parameter. (optional)
/// The number of results to return (optional, default to 100)
/// Gets the next page of data from a previous API call (optional)
- /// The list of ticker symbols to filter to. (optional)
+ /// The comma-delimited list of ticker symbols to filter down to. If not provided, the entire stock exchange is returned. (optional)
/// Gets the next page of data from a previous API call (optional)
/// Task of ApiResponse (ApiResponseStockExchangeStockPrices)
System.Threading.Tasks.Task> GetStockExchangePricesAsyncWithHttpInfo (string identifier, DateTime? date = null, DateTime? startDate = null, DateTime? endDate = null, int? pageSize = null, string nextPage = null, List tickers = null, string nextPage2 = null);
@@ -303,10 +303,10 @@ public interface IStockExchangeApi : IApiAccessor
///
/// Thrown when fails to make API call
/// A Stock Exchange identifier (MIC or Intrinio ID)
- /// Return realtime prices from the specified data source. If no source is specified, all sources are used. (optional)
+ /// Return realtime prices from the specified comma-delimited data sources. If no source is specified, all sources available to user are used. (optional)
/// Returns prices only from the most recent trading day. (optional)
/// The number of results to return (optional, default to 100)
- /// The list of ticker symbols to filter to. (optional)
+ /// The comma-delimited list of ticker symbols to filter to. If not provided, the entire stock exchange is returned. (optional)
/// Gets the next page of data from a previous API call (optional)
/// Task of ApiResponseStockExchangeRealtimeStockPrices
System.Threading.Tasks.Task GetStockExchangeRealtimePricesAsync (string identifier, List source = null, bool? activeOnly = null, int? pageSize = null, List tickers = null, string nextPage = null);
@@ -319,10 +319,10 @@ public interface IStockExchangeApi : IApiAccessor
///
/// Thrown when fails to make API call
/// A Stock Exchange identifier (MIC or Intrinio ID)
- /// Return realtime prices from the specified data source. If no source is specified, all sources are used. (optional)
+ /// Return realtime prices from the specified comma-delimited data sources. If no source is specified, all sources available to user are used. (optional)
/// Returns prices only from the most recent trading day. (optional)
/// The number of results to return (optional, default to 100)
- /// The list of ticker symbols to filter to. (optional)
+ /// The comma-delimited list of ticker symbols to filter to. If not provided, the entire stock exchange is returned. (optional)
/// Gets the next page of data from a previous API call (optional)
/// Task of ApiResponse (ApiResponseStockExchangeRealtimeStockPrices)
System.Threading.Tasks.Task> GetStockExchangeRealtimePricesAsyncWithHttpInfo (string identifier, List source = null, bool? activeOnly = null, int? pageSize = null, List tickers = null, string nextPage = null);
@@ -940,7 +940,7 @@ public async System.Threading.Tasks.TaskThe end of the date range you're querying. May not be used with date parameter. (optional)
/// The number of results to return (optional, default to 100)
/// Gets the next page of data from a previous API call (optional)
- /// The list of ticker symbols to filter to. (optional)
+ /// The comma-delimited list of ticker symbols to filter down to. If not provided, the entire stock exchange is returned. (optional)
/// Gets the next page of data from a previous API call (optional)
/// ApiResponseStockExchangeStockPrices
public ApiResponseStockExchangeStockPrices GetStockExchangePrices (string identifier, DateTime? date = null, DateTime? startDate = null, DateTime? endDate = null, int? pageSize = null, string nextPage = null, List tickers = null, string nextPage2 = null)
@@ -959,7 +959,7 @@ public ApiResponseStockExchangeStockPrices GetStockExchangePrices (string identi
/// The end of the date range you're querying. May not be used with date parameter. (optional)
/// The number of results to return (optional, default to 100)
/// Gets the next page of data from a previous API call (optional)
- /// The list of ticker symbols to filter to. (optional)
+ /// The comma-delimited list of ticker symbols to filter down to. If not provided, the entire stock exchange is returned. (optional)
/// Gets the next page of data from a previous API call (optional)
/// ApiResponse of ApiResponseStockExchangeStockPrices
@@ -1034,7 +1034,7 @@ public ApiResponse< ApiResponseStockExchangeStockPrices > GetStockExchangePrices
/// The end of the date range you're querying. May not be used with date parameter. (optional)
/// The number of results to return (optional, default to 100)
/// Gets the next page of data from a previous API call (optional)
- /// The list of ticker symbols to filter to. (optional)
+ /// The comma-delimited list of ticker symbols to filter down to. If not provided, the entire stock exchange is returned. (optional)
/// Gets the next page of data from a previous API call (optional)
/// Task of ApiResponseStockExchangeStockPrices
public async System.Threading.Tasks.Task GetStockExchangePricesAsync (string identifier, DateTime? date = null, DateTime? startDate = null, DateTime? endDate = null, int? pageSize = null, string nextPage = null, List tickers = null, string nextPage2 = null)
@@ -1054,7 +1054,7 @@ public async System.Threading.Tasks.Task Ge
/// The end of the date range you're querying. May not be used with date parameter. (optional)
/// The number of results to return (optional, default to 100)
/// Gets the next page of data from a previous API call (optional)
- /// The list of ticker symbols to filter to. (optional)
+ /// The comma-delimited list of ticker symbols to filter down to. If not provided, the entire stock exchange is returned. (optional)
/// Gets the next page of data from a previous API call (optional)
/// Task of ApiResponse (ApiResponseStockExchangeStockPrices)
public async System.Threading.Tasks.Task> GetStockExchangePricesAsyncWithHttpInfo (string identifier, DateTime? date = null, DateTime? startDate = null, DateTime? endDate = null, int? pageSize = null, string nextPage = null, List tickers = null, string nextPage2 = null)
@@ -1123,10 +1123,10 @@ public async System.Threading.Tasks.Task
/// Thrown when fails to make API call
/// A Stock Exchange identifier (MIC or Intrinio ID)
- /// Return realtime prices from the specified data source. If no source is specified, all sources are used. (optional)
+ /// Return realtime prices from the specified comma-delimited data sources. If no source is specified, all sources available to user are used. (optional)
/// Returns prices only from the most recent trading day. (optional)
/// The number of results to return (optional, default to 100)
- /// The list of ticker symbols to filter to. (optional)
+ /// The comma-delimited list of ticker symbols to filter to. If not provided, the entire stock exchange is returned. (optional)
/// Gets the next page of data from a previous API call (optional)
/// ApiResponseStockExchangeRealtimeStockPrices
public ApiResponseStockExchangeRealtimeStockPrices GetStockExchangeRealtimePrices (string identifier, List source = null, bool? activeOnly = null, int? pageSize = null, List tickers = null, string nextPage = null)
@@ -1140,10 +1140,10 @@ public ApiResponseStockExchangeRealtimeStockPrices GetStockExchangeRealtimePrice
///
/// Thrown when fails to make API call
/// A Stock Exchange identifier (MIC or Intrinio ID)
- /// Return realtime prices from the specified data source. If no source is specified, all sources are used. (optional)
+ /// Return realtime prices from the specified comma-delimited data sources. If no source is specified, all sources available to user are used. (optional)
/// Returns prices only from the most recent trading day. (optional)
/// The number of results to return (optional, default to 100)
- /// The list of ticker symbols to filter to. (optional)
+ /// The comma-delimited list of ticker symbols to filter to. If not provided, the entire stock exchange is returned. (optional)
/// Gets the next page of data from a previous API call (optional)
/// ApiResponse of ApiResponseStockExchangeRealtimeStockPrices
@@ -1211,10 +1211,10 @@ public ApiResponse< ApiResponseStockExchangeRealtimeStockPrices > GetStockExchan
///
/// Thrown when fails to make API call
/// A Stock Exchange identifier (MIC or Intrinio ID)
- /// Return realtime prices from the specified data source. If no source is specified, all sources are used. (optional)
+ /// Return realtime prices from the specified comma-delimited data sources. If no source is specified, all sources available to user are used. (optional)
/// Returns prices only from the most recent trading day. (optional)
/// The number of results to return (optional, default to 100)
- /// The list of ticker symbols to filter to. (optional)
+ /// The comma-delimited list of ticker symbols to filter to. If not provided, the entire stock exchange is returned. (optional)
/// Gets the next page of data from a previous API call (optional)
/// Task of ApiResponseStockExchangeRealtimeStockPrices
public async System.Threading.Tasks.Task GetStockExchangeRealtimePricesAsync (string identifier, List source = null, bool? activeOnly = null, int? pageSize = null, List tickers = null, string nextPage = null)
@@ -1229,10 +1229,10 @@ public async System.Threading.Tasks.Task
/// Thrown when fails to make API call
/// A Stock Exchange identifier (MIC or Intrinio ID)
- /// Return realtime prices from the specified data source. If no source is specified, all sources are used. (optional)
+ /// Return realtime prices from the specified comma-delimited data sources. If no source is specified, all sources available to user are used. (optional)
/// Returns prices only from the most recent trading day. (optional)
/// The number of results to return (optional, default to 100)
- /// The list of ticker symbols to filter to. (optional)
+ /// The comma-delimited list of ticker symbols to filter to. If not provided, the entire stock exchange is returned. (optional)
/// Gets the next page of data from a previous API call (optional)
/// Task of ApiResponse (ApiResponseStockExchangeRealtimeStockPrices)
public async System.Threading.Tasks.Task> GetStockExchangeRealtimePricesAsyncWithHttpInfo (string identifier, List source = null, bool? activeOnly = null, int? pageSize = null, List tickers = null, string nextPage = null)
diff --git a/src/Intrinio.SDK/Client/Configuration.cs b/src/Intrinio.SDK/Client/Configuration.cs
index 0c62b26..53d8eee 100644
--- a/src/Intrinio.SDK/Client/Configuration.cs
+++ b/src/Intrinio.SDK/Client/Configuration.cs
@@ -21,7 +21,7 @@ public class Configuration : IReadableConfiguration
/// Version of the package.
///
/// Version of the package.
- public const string Version = "7.7.0";
+ public const string Version = "7.7.1";
///
/// Identifier for ISO 8601 DateTime Format
@@ -106,7 +106,7 @@ static Configuration()
///
public Configuration()
{
- UserAgent = "Swagger-Codegen/7.7.0/csharp";
+ UserAgent = "Swagger-Codegen/7.7.1/csharp";
BasePath = "https://api-v2.intrinio.com";
DefaultHeader = new ConcurrentDictionary();
ApiKey = new ConcurrentDictionary();
@@ -182,7 +182,7 @@ public Configuration(
string dateTimeFormat = null,
int timeout = 100000,
bool allowRetries = true,
- string userAgent = "Swagger-Codegen/7.7.0/csharp"
+ string userAgent = "Swagger-Codegen/7.7.1/csharp"
// ReSharper restore UnusedParameter.Local
)
{
@@ -421,8 +421,8 @@ public static String ToDebugReport()
String report = "C# SDK (Intrinio.SDK) Debug Report:\n";
report += " OS: " + System.Environment.OSVersion + "\n";
report += " .NET Framework Version: " + System.Environment.Version + "\n";
- report += " Version of the API: 2.64.0\n";
- report += " SDK Package Version: 7.7.0\n";
+ report += " Version of the API: 2.64.1\n";
+ report += " SDK Package Version: 7.7.1\n";
return report;
}
diff --git a/src/Intrinio.SDK/Intrinio.SDK.csproj b/src/Intrinio.SDK/Intrinio.SDK.csproj
index dffe08e..03d735d 100644
--- a/src/Intrinio.SDK/Intrinio.SDK.csproj
+++ b/src/Intrinio.SDK/Intrinio.SDK.csproj
@@ -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.
- OpenAPI spec version: 2.64.0
+ OpenAPI spec version: 2.64.1
-->
diff --git a/src/Intrinio.SDK/Model/ApiResponseCompanyNewsBody.cs b/src/Intrinio.SDK/Model/ApiResponseCompanyNewsBody.cs
index e59062a..7af3612 100644
--- a/src/Intrinio.SDK/Model/ApiResponseCompanyNewsBody.cs
+++ b/src/Intrinio.SDK/Model/ApiResponseCompanyNewsBody.cs
@@ -25,16 +25,16 @@ public partial class ApiResponseCompanyNewsBody : IEquatable
/// Initializes a new instance of the class.
///
- /// The article body. Requires additional access..
+ /// The article body..
public ApiResponseCompanyNewsBody(string Body = default(string))
{
this.Body = Body;
}
///
- /// The article body. Requires additional access.
+ /// The article body.
///
- /// The article body. Requires additional access.
+ /// The article body.
[DataMember(Name="body", EmitDefaultValue=false)]
public string Body { get; set; }
diff --git a/src/Intrinio.SDK/Model/ApiResponseSecurityQuote.cs b/src/Intrinio.SDK/Model/ApiResponseSecurityQuote.cs
index 2e35338..d8b685e 100644
--- a/src/Intrinio.SDK/Model/ApiResponseSecurityQuote.cs
+++ b/src/Intrinio.SDK/Model/ApiResponseSecurityQuote.cs
@@ -33,6 +33,7 @@ public partial class ApiResponseSecurityQuote : IEquatableThe highest price from the latest day of trading..
/// The lowest price from the latest day of trading..
/// The volume of the security from the source..
+ /// The volume of the security for the entire market..
/// The 52 week high price..
/// The 52 week low price..
/// The current market cap..
@@ -51,7 +52,7 @@ public partial class ApiResponseSecurityQuote : IEquatableThe percent change from the adjusted price 180 days ago to now..
/// The percent change from the adjusted price 365 days ago to now..
/// The percent change from the adjusted price 1825 days ago to now..
- public ApiResponseSecurityQuote(SecuritySummary Security = default(SecuritySummary), decimal? Last = default(decimal?), DateTime? LastTime = default(DateTime?), string Source = default(string), decimal? Open = default(decimal?), decimal? High = default(decimal?), decimal? Low = default(decimal?), decimal? ExchangeVolume = default(decimal?), decimal? EodFiftyTwoWeekHigh = default(decimal?), decimal? EodFiftyTwoWeekLow = default(decimal?), decimal? Marketcap = default(decimal?), decimal? Pricetoearnings = default(decimal?), decimal? PreviousClose = default(decimal?), decimal? PreviousCloseDate = default(decimal?), decimal? Change = default(decimal?), decimal? ChangePercent = default(decimal?), decimal? AdjClose5DaysAgo = default(decimal?), decimal? AdjClose30DaysAgo = default(decimal?), decimal? AdjClose180DaysAgo = default(decimal?), decimal? AdjClose365DaysAgo = default(decimal?), decimal? AdjClose1825DaysAgo = default(decimal?), decimal? ChangePercent5Days = default(decimal?), decimal? ChangePercent30Days = default(decimal?), decimal? ChangePercent180Days = default(decimal?), decimal? ChangePercent365Days = default(decimal?), decimal? ChangePercent1825Days = default(decimal?))
+ public ApiResponseSecurityQuote(SecuritySummary Security = default(SecuritySummary), decimal? Last = default(decimal?), DateTime? LastTime = default(DateTime?), string Source = default(string), decimal? Open = default(decimal?), decimal? High = default(decimal?), decimal? Low = default(decimal?), decimal? ExchangeVolume = default(decimal?), decimal? MarketVolume = default(decimal?), decimal? EodFiftyTwoWeekHigh = default(decimal?), decimal? EodFiftyTwoWeekLow = default(decimal?), decimal? Marketcap = default(decimal?), decimal? Pricetoearnings = default(decimal?), decimal? PreviousClose = default(decimal?), decimal? PreviousCloseDate = default(decimal?), decimal? Change = default(decimal?), decimal? ChangePercent = default(decimal?), decimal? AdjClose5DaysAgo = default(decimal?), decimal? AdjClose30DaysAgo = default(decimal?), decimal? AdjClose180DaysAgo = default(decimal?), decimal? AdjClose365DaysAgo = default(decimal?), decimal? AdjClose1825DaysAgo = default(decimal?), decimal? ChangePercent5Days = default(decimal?), decimal? ChangePercent30Days = default(decimal?), decimal? ChangePercent180Days = default(decimal?), decimal? ChangePercent365Days = default(decimal?), decimal? ChangePercent1825Days = default(decimal?))
{
this.Security = Security;
this.Last = Last;
@@ -61,6 +62,7 @@ public partial class ApiResponseSecurityQuote : IEquatable
+ /// The volume of the security for the entire market.
+ ///
+ /// The volume of the security for the entire market.
+ [DataMember(Name="market_volume", EmitDefaultValue=false)]
+ public decimal? MarketVolume { get; set; }
+
///
/// The 52 week high price.
///
@@ -279,6 +288,7 @@ public override string ToString()
sb.Append(" High: ").Append(High).Append("\n");
sb.Append(" Low: ").Append(Low).Append("\n");
sb.Append(" ExchangeVolume: ").Append(ExchangeVolume).Append("\n");
+ sb.Append(" MarketVolume: ").Append(MarketVolume).Append("\n");
sb.Append(" EodFiftyTwoWeekHigh: ").Append(EodFiftyTwoWeekHigh).Append("\n");
sb.Append(" EodFiftyTwoWeekLow: ").Append(EodFiftyTwoWeekLow).Append("\n");
sb.Append(" Marketcap: ").Append(Marketcap).Append("\n");
@@ -371,6 +381,11 @@ public bool Equals(ApiResponseSecurityQuote input)
(this.ExchangeVolume != null &&
this.ExchangeVolume.Equals(input.ExchangeVolume))
) &&
+ (
+ this.MarketVolume == input.MarketVolume ||
+ (this.MarketVolume != null &&
+ this.MarketVolume.Equals(input.MarketVolume))
+ ) &&
(
this.EodFiftyTwoWeekHigh == input.EodFiftyTwoWeekHigh ||
(this.EodFiftyTwoWeekHigh != null &&
@@ -488,6 +503,8 @@ public override int GetHashCode()
hashCode = hashCode * 59 + this.Low.GetHashCode();
if (this.ExchangeVolume != null)
hashCode = hashCode * 59 + this.ExchangeVolume.GetHashCode();
+ if (this.MarketVolume != null)
+ hashCode = hashCode * 59 + this.MarketVolume.GetHashCode();
if (this.EodFiftyTwoWeekHigh != null)
hashCode = hashCode * 59 + this.EodFiftyTwoWeekHigh.GetHashCode();
if (this.EodFiftyTwoWeekLow != null)