using System;
namespace Octokit.Reactive
{
///
/// A client for GitHub's Reactions API.
///
///
/// See the Reactions API documentation for more information.
///
public interface IObservableIssueReactionsClient
{
///
/// List reactions for a specified Issue.
///
/// https://developer.github.com/v3/reactions/#list-reactions-for-an-issue
/// The owner of the repository
/// The name of the repository
/// The issue id
/// An representing s for a specified issue.
IObservable GetAll(string owner, string name, int number);
///
/// List reactions for a specified Issue.
///
/// https://developer.github.com/v3/reactions/#list-reactions-for-an-issue
/// The ID of the repository
/// The issue id
/// An representing s for a specified issue.
IObservable GetAll(int repositoryId, int number);
///
/// Creates a reaction for a specified Issue.
///
/// https://developer.github.com/v3/reactions/#create-reaction-for-an-issue
/// The owner of the repository
/// The name of the repository
/// The issue id
/// The reaction to create
/// An representing created for a specified issue.
IObservable Create(string owner, string name, int number, NewReaction reaction);
///
/// Creates a reaction for a specified Issue.
///
/// https://developer.github.com/v3/reactions/#create-reaction-for-an-issue
/// The ID of the repository
/// The issue id
/// The reaction to create
/// An representing created for a specified issue.
IObservable Create(int repositoryId, int number, NewReaction reaction);
}
}