using System;
namespace Octokit.Reactive
{
///
/// A client for GitHub's User Keys API.
///
///
/// See the User Keys API documentation for more information.
///
public interface IObservableUserKeysClient
{
///
/// Gets all public keys for the authenticated user.
///
///
/// https://developer.github.com/v3/users/keys/#list-your-public-keys
///
/// The s for the authenticated user.
IObservable GetAll();
///
/// Gets all verified public keys for a user.
///
///
/// https://developer.github.com/v3/users/keys/#list-public-keys-for-a-user
///
/// The s for the user.
IObservable GetAll(string userName);
}
}