/// <summary>
 /// Get the list of users this user is followed by.
 /// 
 /// Required scope: relationships
 /// </summary>
 /// <param name="userId">The ID of the user.</param>
 /// <param name="options">The options for the call to the API.</param>
 public InstagramUsersResponse FollowedBy(long userId, InstagramFollowedByOptions options) {
     return InstagramUsersResponse.ParseResponse(Raw.FollowedBy(userId, options));
 }
 /// <summary>
 /// Get the list of users this user is followed by.
 /// 
 /// Required scope: relationships
 /// </summary>
 /// <param name="userId">The ID of the user.</param>
 /// <param name="options">The options for the call to the API.</param>
 public SocialHttpResponse FollowedBy(long userId, InstagramFollowedByOptions options) {
     return Client.DoAuthenticatedGetRequest("https://api.instagram.com/v1/users/" + userId + "/followed-by", options);
 }