/// <summary>
 /// Get a list of users the user matching the specified <paramref name="options"/> follows. Requires the <code>follower_list</code> scope.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 /// <returns>An instance of <see cref="SocialHttpResponse"/> representing the raw response.</returns>
 /// <see>
 ///     <cref>https://instagram.com/developer/endpoints/relationships/#get_users_follows</cref>
 /// </see>
 public SocialHttpResponse Follows(InstagramGetFollowsOptions options)
 {
     if (options == null)
     {
         throw new ArgumentNullException("options");
     }
     return(Client.DoHttpGetRequest("https://api.instagram.com/v1/users/" + options.Identifier + "/follows", options));
 }
 /// <summary>
 /// Get a list of users the user matching the specified <paramref name="options"/> follows. Requires the <code>follower_list</code> scope.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 /// <returns>An instance of <see cref="InstagramSearchUsersResponse"/> representing the response.</returns>
 public InstagramSearchUsersResponse Follows(InstagramGetFollowsOptions options)
 {
     return(InstagramSearchUsersResponse.ParseResponse(Raw.Follows(options)));
 }