Skip to content

Commit

Permalink
Add type "Market" in OrderPriceType (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
golunikita committed Mar 24, 2024
1 parent e516258 commit eda18e1
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions Huobi.Net/Enums/OrderPriceType.cs
Expand Up @@ -7,10 +7,15 @@ namespace Huobi.Net.Enums
/// </summary>
public enum OrderPriceType
{
/// <summary>
/// Limit
/// </summary>
[Map("limit")]
/// <summary>
/// Market
/// </summary>
[Map("market")]
Market,
/// <summary>
/// Limit
/// </summary>
[Map("limit")]
Limit,
/// <summary>
/// Best offer
Expand Down

0 comments on commit eda18e1

Please sign in to comment.