/// <summary>
 /// Gets a list of channels of the user with the specified <paramref name="username"/>.
 /// </summary>
 /// <param name="username">The username of the parent user.</param>
 /// <returns>An instance of <see cref="VimeoGetUserChannelsResponse"/> representing the response.</returns>
 public VimeoGetUserChannelsResponse GetChannels(string username)
 {
     return(VimeoGetUserChannelsResponse.ParseResponse(Raw.GetChannels(username)));
 }
 /// <summary>
 /// Gets a list of channels of the user with the specified <paramref name="userId"/>.
 /// </summary>
 /// <param name="userId">The ID of the parent user.</param>
 /// <returns>An instance of <see cref="VimeoGetUserChannelsResponse"/> representing the response.</returns>
 public VimeoGetUserChannelsResponse GetChannels(long userId)
 {
     return(VimeoGetUserChannelsResponse.ParseResponse(Raw.GetChannels(userId)));
 }
 /// <summary>
 /// Gets a list of channels of the user with the specified <paramref name="userId"/>.
 /// </summary>
 /// <param name="userId">The ID of the parent user.</param>
 /// <param name="page">The page to be returned.</param>
 /// <param name="perPage">The maximum amount of pages to be returned per page.</param>
 /// <returns>An instance of <see cref="VimeoGetUserChannelsResponse"/> representing the response.</returns>
 public VimeoGetUserChannelsResponse GetChannels(long userId, int page, int perPage)
 {
     return(VimeoGetUserChannelsResponse.ParseResponse(Raw.GetChannels(userId, page, perPage)));
 }
 /// <summary>
 /// Gets a list of user channels matching the specified <paramref name="options"/>.
 /// </summary>
 /// <param name="options">The options for request to the API.</param>
 /// <returns>An instance of <see cref="VimeoGetUserChannelsResponse"/> representing the response.</returns>
 public VimeoGetUserChannelsResponse GetChannels(VimeoGetUserChannelsOptions options)
 {
     return(VimeoGetUserChannelsResponse.ParseResponse(Raw.GetChannels(options)));
 }