Skip to content

Commit

Permalink
Added AuctionEndTime property to restClient.UnifiedApi.ExchangeData.G…
Browse files Browse the repository at this point in the history
…etSymbolsAsync and socketClient.UnifiedApi.ExchangeData.SubscribeToSymbolUpdatesAsync models
  • Loading branch information
JKorf committed Nov 4, 2024
1 parent cf7fb8a commit 44425f5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
5 changes: 5 additions & 0 deletions OKX.Net/OKX.Net.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions OKX.Net/Objects/Public/OKXInstrument.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using OKX.Net.Enums;
using System.Collections.Generic;

namespace OKX.Net.Objects.Public;

Expand Down Expand Up @@ -91,6 +92,12 @@ public record OKXInstrument
[JsonPropertyName("listTime"), JsonConverter(typeof(DateTimeConverter))]
public DateTime? ListingTime { get; set; }

/// <summary>
/// The end time of call auction, only applicable to SPOT that are listed through call auctions
/// </summary>
[JsonPropertyName("auctionEndTime"), JsonConverter(typeof(DateTimeConverter))]
public DateTime? AuctionEndTime { get; set; }

/// <summary>
/// Expiry time
/// </summary>
Expand Down

0 comments on commit 44425f5

Please sign in to comment.