/// <summary>
 /// Gets a list of comments for an object with the specified <code>id</code>.
 /// </summary>
 /// <param name="id">The ID of the object.</param>
 /// <param name="options">The options for the call to the API.</param>
 /// <see>
 ///     <cref>https://developers.facebook.com/docs/graph-api/reference/v2.2/object/comments#read</cref>
 /// </see>
 public FacebookCommentsResponse GetComments(string id, FacebookCommentsOptions options)
 {
     return(FacebookCommentsResponse.ParseResponse(Raw.GetComments(id, options)));
 }
 /// <summary>
 /// Gets a list of comments for an object with the specified <code>id</code>.
 /// </summary>
 /// <param name="id">The ID of the object.</param>
 /// <param name="options">The options for the call to the API.</param>
 /// <see>
 ///     <cref>https://developers.facebook.com/docs/graph-api/reference/v2.2/object/comments#read</cref>
 /// </see>
 public SocialHttpResponse GetComments(string id, FacebookCommentsOptions options)
 {
     return(Client.DoAuthenticatedGetRequest("/" + id + "/comments", options));
 }