using System;
using System.Diagnostics.CodeAnalysis;
namespace Octokit.Reactive
{
public interface IObservableRepositoryPagesClient
{
///
/// Gets the page metadata for a given repository
///
/// The owner of the repository
/// The name of the repository
///
/// See the API documentation for more information.
///
///
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
IObservable Get(string owner, string repositoryName);
///
/// Gets all build metadata for a given repository
///
/// The owner of the repository
/// The name of the repository
///
/// See the API documentation for more information.
///
///
IObservable GetAll(string owner, string repositoryName);
///
/// Gets the build metadata for the last build for a given repository
///
/// The owner of the repository
/// The name of the repository
///
/// See the API documentation for more information.
///
///
IObservable GetLatest(string owner, string repositoryName);
}
}