using System; namespace Octokit.Reactive { /// /// A client for GitHub's Dependency Review API. /// /// /// See the Git Dependency Review API documentation for more information. /// public interface IObservableDependencyReviewClient { /// /// Gets all s for the specified repository. /// /// /// See the API documentation for more information. /// /// The owner of the repository /// The name of the repository /// The base revision /// The head revision /// Thrown when a general API error occurs. IObservable GetAll(string owner, string name, string @base, string head); /// /// Gets all s for the specified repository. /// /// /// See the API documentation for more information. /// /// The Id of the repository /// The base revision /// The head revision /// Thrown when a general API error occurs. IObservable GetAll(long repositoryId, string @base, string head); } }