Skip to content

Commit

Permalink
No release notes for this build
Browse files Browse the repository at this point in the history
  • Loading branch information
ssnyder-intrinio committed Jul 22, 2024
1 parent 3e3fc6d commit 73e03fd
Show file tree
Hide file tree
Showing 8 changed files with 63 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Intrinio.SDK.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>Intrinio</title>

<!-- The package version number that is used when resolving dependencies -->
<version>7.6.0</version>
<version>7.6.1</version>

<!-- Authors contain text that appears directly on the gallery -->
<authors>Intrinio</authors>
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.63.1
- Package version: 7.6.0
- API version: 2.63.2
- Package version: 7.6.1


<a name="frameworks-supported"></a>
Expand Down
2 changes: 2 additions & 0 deletions docs/RealtimeStockPrice.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ Name | Type | Description
**LastSize** | decimal? | The size of the last trade. &nbsp;
**BidPrice** | decimal? | The price of the top bid order. &nbsp;
**BidSize** | decimal? | The size of the top bid order. &nbsp;
**BidTime** | DateTime? | The date and time when the last bid occurred. &nbsp;
**AskPrice** | decimal? | The price of the top ask order. &nbsp;
**AskSize** | decimal? | The size of the top ask order. &nbsp;
**AskTime** | DateTime? | The date and time when the last ask occurred. &nbsp;
**OpenPrice** | decimal? | The price at the open of the trading day. &nbsp;
**ClosePrice** | decimal? | The price at the close of the trading day. (IEX only) &nbsp;
**HighPrice** | decimal? | The high price for the trading day. &nbsp;
Expand Down
2 changes: 1 addition & 1 deletion src/Intrinio.SDK.Test/Intrinio.SDK.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -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.63.1
OpenAPI spec version: 2.63.2
-->

Expand Down
16 changes: 16 additions & 0 deletions src/Intrinio.SDK.Test/Model/RealtimeStockPriceTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,14 @@ public void BidSizeTest()
// TODO unit test for the property 'BidSize'
}
/// <summary>
/// Test the property 'BidTime'
/// </summary>
[Test]
public void BidTimeTest()
{
// TODO unit test for the property 'BidTime'
}
/// <summary>
/// Test the property 'AskPrice'
/// </summary>
[Test]
Expand All @@ -115,6 +123,14 @@ public void AskSizeTest()
// TODO unit test for the property 'AskSize'
}
/// <summary>
/// Test the property 'AskTime'
/// </summary>
[Test]
public void AskTimeTest()
{
// TODO unit test for the property 'AskTime'
}
/// <summary>
/// Test the property 'OpenPrice'
/// </summary>
[Test]
Expand Down
10 changes: 5 additions & 5 deletions src/Intrinio.SDK/Client/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class Configuration : IReadableConfiguration
/// Version of the package.
/// </summary>
/// <value>Version of the package.</value>
public const string Version = "7.6.0";
public const string Version = "7.6.1";

/// <summary>
/// Identifier for ISO 8601 DateTime Format
Expand Down Expand Up @@ -106,7 +106,7 @@ static Configuration()
/// </summary>
public Configuration()
{
UserAgent = "Swagger-Codegen/7.6.0/csharp";
UserAgent = "Swagger-Codegen/7.6.1/csharp";
BasePath = "https://api-v2.intrinio.com";
DefaultHeader = new ConcurrentDictionary<string, string>();
ApiKey = new ConcurrentDictionary<string, string>();
Expand Down Expand Up @@ -182,7 +182,7 @@ public Configuration(
string dateTimeFormat = null,
int timeout = 100000,
bool allowRetries = true,
string userAgent = "Swagger-Codegen/7.6.0/csharp"
string userAgent = "Swagger-Codegen/7.6.1/csharp"
// ReSharper restore UnusedParameter.Local
)
{
Expand Down Expand Up @@ -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.63.1\n";
report += " SDK Package Version: 7.6.0\n";
report += " Version of the API: 2.63.2\n";
report += " SDK Package Version: 7.6.1\n";

return report;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Intrinio.SDK/Intrinio.SDK.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -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.63.1
OpenAPI spec version: 2.63.2
-->

Expand Down
36 changes: 35 additions & 1 deletion src/Intrinio.SDK/Model/RealtimeStockPrice.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@ public partial class RealtimeStockPrice : IEquatable<RealtimeStockPrice>, IVali
/// <param name="LastSize">The size of the last trade..</param>
/// <param name="BidPrice">The price of the top bid order..</param>
/// <param name="BidSize">The size of the top bid order..</param>
/// <param name="BidTime">The date and time when the last bid occurred..</param>
/// <param name="AskPrice">The price of the top ask order..</param>
/// <param name="AskSize">The size of the top ask order..</param>
/// <param name="AskTime">The date and time when the last ask occurred..</param>
/// <param name="OpenPrice">The price at the open of the trading day..</param>
/// <param name="ClosePrice">The price at the close of the trading day. (IEX only).</param>
/// <param name="HighPrice">The high price for the trading day..</param>
Expand All @@ -46,15 +48,17 @@ public partial class RealtimeStockPrice : IEquatable<RealtimeStockPrice>, IVali
/// <param name="MarketCenterCode">The market center character code..</param>
/// <param name="IsDarkpool">Whether or not the current trade is from a darkpool or not..</param>
/// <param name="Security">Security.</param>
public RealtimeStockPrice(decimal? LastPrice = default(decimal?), DateTime? LastTime = default(DateTime?), decimal? LastSize = default(decimal?), decimal? BidPrice = default(decimal?), decimal? BidSize = default(decimal?), decimal? AskPrice = default(decimal?), decimal? AskSize = default(decimal?), decimal? OpenPrice = default(decimal?), decimal? ClosePrice = default(decimal?), decimal? HighPrice = default(decimal?), decimal? LowPrice = default(decimal?), decimal? ExchangeVolume = default(decimal?), decimal? MarketVolume = default(decimal?), DateTime? UpdatedOn = default(DateTime?), string Source = default(string), string ListingVenue = default(string), string SalesConditions = default(string), string QuoteConditions = default(string), string MarketCenterCode = default(string), bool? IsDarkpool = default(bool?), RealtimeStockPriceSecurity Security = default(RealtimeStockPriceSecurity))
public RealtimeStockPrice(decimal? LastPrice = default(decimal?), DateTime? LastTime = default(DateTime?), decimal? LastSize = default(decimal?), decimal? BidPrice = default(decimal?), decimal? BidSize = default(decimal?), DateTime? BidTime = default(DateTime?), decimal? AskPrice = default(decimal?), decimal? AskSize = default(decimal?), DateTime? AskTime = default(DateTime?), decimal? OpenPrice = default(decimal?), decimal? ClosePrice = default(decimal?), decimal? HighPrice = default(decimal?), decimal? LowPrice = default(decimal?), decimal? ExchangeVolume = default(decimal?), decimal? MarketVolume = default(decimal?), DateTime? UpdatedOn = default(DateTime?), string Source = default(string), string ListingVenue = default(string), string SalesConditions = default(string), string QuoteConditions = default(string), string MarketCenterCode = default(string), bool? IsDarkpool = default(bool?), RealtimeStockPriceSecurity Security = default(RealtimeStockPriceSecurity))
{
this.LastPrice = LastPrice;
this.LastTime = LastTime;
this.LastSize = LastSize;
this.BidPrice = BidPrice;
this.BidSize = BidSize;
this.BidTime = BidTime;
this.AskPrice = AskPrice;
this.AskSize = AskSize;
this.AskTime = AskTime;
this.OpenPrice = OpenPrice;
this.ClosePrice = ClosePrice;
this.HighPrice = HighPrice;
Expand Down Expand Up @@ -106,6 +110,13 @@ public partial class RealtimeStockPrice : IEquatable<RealtimeStockPrice>, IVali
[DataMember(Name="bid_size", EmitDefaultValue=false)]
public decimal? BidSize { get; set; }

/// <summary>
/// The date and time when the last bid occurred.
/// </summary>
/// <value>The date and time when the last bid occurred.</value>
[DataMember(Name="bid_time", EmitDefaultValue=false)]
public DateTime? BidTime { get; set; }

/// <summary>
/// The price of the top ask order.
/// </summary>
Expand All @@ -120,6 +131,13 @@ public partial class RealtimeStockPrice : IEquatable<RealtimeStockPrice>, IVali
[DataMember(Name="ask_size", EmitDefaultValue=false)]
public decimal? AskSize { get; set; }

/// <summary>
/// The date and time when the last ask occurred.
/// </summary>
/// <value>The date and time when the last ask occurred.</value>
[DataMember(Name="ask_time", EmitDefaultValue=false)]
public DateTime? AskTime { get; set; }

/// <summary>
/// The price at the open of the trading day.
/// </summary>
Expand Down Expand Up @@ -230,8 +248,10 @@ public override string ToString()
sb.Append(" LastSize: ").Append(LastSize).Append("\n");
sb.Append(" BidPrice: ").Append(BidPrice).Append("\n");
sb.Append(" BidSize: ").Append(BidSize).Append("\n");
sb.Append(" BidTime: ").Append(BidTime).Append("\n");
sb.Append(" AskPrice: ").Append(AskPrice).Append("\n");
sb.Append(" AskSize: ").Append(AskSize).Append("\n");
sb.Append(" AskTime: ").Append(AskTime).Append("\n");
sb.Append(" OpenPrice: ").Append(OpenPrice).Append("\n");
sb.Append(" ClosePrice: ").Append(ClosePrice).Append("\n");
sb.Append(" HighPrice: ").Append(HighPrice).Append("\n");
Expand Down Expand Up @@ -305,6 +325,11 @@ public bool Equals(RealtimeStockPrice input)
(this.BidSize != null &&
this.BidSize.Equals(input.BidSize))
) &&
(
this.BidTime == input.BidTime ||
(this.BidTime != null &&
this.BidTime.Equals(input.BidTime))
) &&
(
this.AskPrice == input.AskPrice ||
(this.AskPrice != null &&
Expand All @@ -315,6 +340,11 @@ public bool Equals(RealtimeStockPrice input)
(this.AskSize != null &&
this.AskSize.Equals(input.AskSize))
) &&
(
this.AskTime == input.AskTime ||
(this.AskTime != null &&
this.AskTime.Equals(input.AskTime))
) &&
(
this.OpenPrice == input.OpenPrice ||
(this.OpenPrice != null &&
Expand Down Expand Up @@ -406,10 +436,14 @@ public override int GetHashCode()
hashCode = hashCode * 59 + this.BidPrice.GetHashCode();
if (this.BidSize != null)
hashCode = hashCode * 59 + this.BidSize.GetHashCode();
if (this.BidTime != null)
hashCode = hashCode * 59 + this.BidTime.GetHashCode();
if (this.AskPrice != null)
hashCode = hashCode * 59 + this.AskPrice.GetHashCode();
if (this.AskSize != null)
hashCode = hashCode * 59 + this.AskSize.GetHashCode();
if (this.AskTime != null)
hashCode = hashCode * 59 + this.AskTime.GetHashCode();
if (this.OpenPrice != null)
hashCode = hashCode * 59 + this.OpenPrice.GetHashCode();
if (this.ClosePrice != null)
Expand Down

0 comments on commit 73e03fd

Please sign in to comment.