using System.Collections.Generic;
using System.Threading.Tasks;
namespace Octokit
{
///
/// A client for GitHub's Reactions API.
///
///
/// See the Reactions API documentation for more information.
///
public interface ICommitCommentReactionsClient
{
///
/// Creates a reaction for a specified Commit Comment
///
/// https://developer.github.com/v3/reactions/#create-reaction-for-a-commit-comment
/// The owner of the repository
/// The name of the repository
/// The comment id
/// The reaction to create
///
Task Create(string owner, string name, int number, NewReaction reaction);
///
/// Creates a reaction for a specified Commit Comment
///
/// https://developer.github.com/v3/reactions/#create-reaction-for-a-commit-comment
/// The owner of the repository
/// The comment id
/// The reaction to create
///
Task Create(int repositoryId, int number, NewReaction reaction);
///
/// Get all reactions for a specified Commit Comment
///
/// https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment
/// The owner of the repository
/// The name of the repository
/// The comment id
///
Task> GetAll(string owner, string name, int number);
///
/// Get all reactions for a specified Commit Comment
///
/// https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment
/// The owner of the repository
/// The comment id
///
Task> GetAll(int repositoryId, int number);
}
}