using CryptoExchange.Net.Authentication; namespace CryptoExchange.Net.Objects.Options { /// /// Options for API usage /// public class ApiOptions { /// /// Whether or not to automatically sync the local time with the server time /// public bool? AutoTimestamp { get; set; } /// /// 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 /// public bool? OutputOriginalData { get; set; } /// /// The api credentials used for signing requests to this API. Overrides API credentials provided in the client options /// public ApiCredentials? ApiCredentials { get; set; } } }