/// <summary>
 /// Get a list of users following the user matching the specified <paramref name="options"/>. 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_followed_by</cref>
 /// </see>
 public SocialHttpResponse FollowedBy(InstagramGetFollowedByOptions options)
 {
     if (options == null)
     {
         throw new ArgumentNullException("options");
     }
     return(Client.DoHttpGetRequest("https://api.instagram.com/v1/users/" + options.Identifier + "/followed-by", options));
 }
 /// <summary>
 /// Get a list of users following the user matching the specified <paramref name="options"/>. 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 FollowedBy(InstagramGetFollowedByOptions options)
 {
     return(InstagramSearchUsersResponse.ParseResponse(Raw.FollowedBy(options)));
 }