using System; using System.Diagnostics.CodeAnalysis; namespace Octokit.Reactive { public interface IObservableGistsClient { IObservableGistCommentsClient Comment { get; set; } /// /// Gets a gist /// /// /// http://developer.github.com/v3/gists/#get-a-single-gist /// /// The id of the gist [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] IObservable Get(string id); } }