/// <summary> </summary> public Task <IReadOnlyCollection <RestClip> > GetClipsAsync(bool istrending = false, PageOptions paging = null, RequestOptions options = null) => ClientHelper.GetFollowedClipsAsync(Client, Id, istrending, paging, options);
/// <summary> Get information about this channel's user, if authenticated </summary> public Task <RestSelfUser> GetSelfUserAsync(RequestOptions options = null) => ClientHelper.GetCurrentUserAsync(Client, options);
// Streams /// <summary> Get this channel's stream information, if available </summary> public Task <RestStream> GetStreamAsync(StreamType type = StreamType.Live, RequestOptions options = null) => ClientHelper.GetStreamAsync(Client, Id, type, options);
// Users /// <summary> Get information about this channel's user </summary> public Task <RestUser> GetUserAsync(RequestOptions options = null) => ClientHelper.GetUserAsync(Client, Id, options);
// Chat /// <summary> Get cheer badges for this channel </summary> public Task <IReadOnlyCollection <RestCheerInfo> > GetCheersAsync(RequestOptions options = null) => ClientHelper.GetCheersAsync(Client, Id, options);