using Newtonsoft.Json; namespace QuantConnect.Api { /// /// Response from reading purchased data /// public class Link : RestResponse { /// /// Link to the data /// [JsonProperty(PropertyName = "link")] public string DataLink { get; set; } } }