mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2026-04-07 10:11:10 +00:00
27 lines
919 B
C#
27 lines
919 B
C#
using CryptoExchange.Net.Authentication;
|
|
|
|
namespace CryptoExchange.Net.Objects.Options
|
|
{
|
|
/// <summary>
|
|
/// Options for API usage
|
|
/// </summary>
|
|
public class ApiOptions
|
|
{
|
|
/// <summary>
|
|
/// Whether or not to automatically sync the local time with the server time
|
|
/// </summary>
|
|
public bool? AutoTimestamp { get; set; }
|
|
|
|
/// <summary>
|
|
/// If true, the CallResult and DataEvent objects will also include the originally received string data in the OriginalData property.
|
|
/// Note that this comes at a performance cost
|
|
/// </summary>
|
|
public bool? OutputOriginalData { get; set; }
|
|
|
|
/// <summary>
|
|
/// The api credentials used for signing requests to this API. Overrides API credentials provided in the client options
|
|
/// </summary>
|
|
public ApiCredentials? ApiCredentials { get; set; }
|
|
}
|
|
}
|