namespace Octokit.Reactive
{
///
/// A client for GitHub's Checks API.
///
///
/// See the Checks API documentation for more information.
///
public interface IObservableChecksClient
{
///
/// A client for GitHub's Check Runs API.
///
///
/// See the Check Runs API documentation for more information.
///
IObservableCheckRunsClient Run { get; }
///
/// A client for GitHub's Check Suites API.
///
///
/// See the Check Suites API documentation for more information.
///
IObservableCheckSuitesClient Suite { get; }
}
}