Skip to content

Commit

Permalink
Added deprecation notice
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Aug 1, 2024
1 parent b173abb commit 6c48507
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CoinEx.Net/Interfaces/Clients/ICoinExRestClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace CoinEx.Net.Interfaces.Clients
public interface ICoinExRestClient : IRestClient
{
/// <summary>
/// Spot V1 API endpoints. Use V2 API if possible, V1 API will be removed at a later date
/// DEPRECATED FROM 2024/09/25, USE SpotApiV2 INSTEAD
/// </summary>
SpotApiV1.ICoinExRestClientSpotApi SpotApi { get; }
/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion CoinEx.Net/Interfaces/Clients/ICoinExSocketClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public interface ICoinExSocketClient : ISocketClient
/// </summary>
public SpotApiV2.ICoinExSocketClientSpotApi SpotApiV2 { get; }
/// <summary>
/// V1 API Spot streams. Use V2 if possible, V1 will be removed at a later date
/// DEPRECATED FROM 2024/09/25, USE SpotApiV2 INSTEAD
/// </summary>
public SpotApiV1.ICoinExSocketClientSpotApi SpotApi { get; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ namespace CoinEx.Net.Interfaces.Clients.SpotApiV1
public interface ICoinExRestClientSpotApi : IRestApiClient, IDisposable
{
/// <summary>
/// Endpoints related to account settings, info or actions
/// DEPRECATED FROM 2024/09/25, USE SpotApiV2 INSTEAD
/// </summary>
ICoinExRestClientSpotApiAccount Account { get; }

/// <summary>
/// Endpoints related to retrieving market and system data
/// DEPRECATED FROM 2024/09/25, USE SpotApiV2 INSTEAD
/// </summary>
ICoinExRestClientSpotApiExchangeData ExchangeData { get; }

/// <summary>
/// Endpoints related to orders and trades
/// DEPRECATED FROM 2024/09/25, USE SpotApiV2 INSTEAD
/// </summary>
ICoinExRestClientSpotApiTrading Trading { get; }

Expand Down

0 comments on commit 6c48507

Please sign in to comment.