/// <summary>
 /// Gets a list of photos of the album, user or page matching the specified <code>options</code>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 public FacebookPhotosResponse GetPhotos(FacebookGetPhotosOptions options) {
     return FacebookPhotosResponse.ParseResponse(Raw.GetPhotos(options));
 }
 /// <summary>
 /// Gets a list of photos of the album, user or page matching the specified <code>options</code>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 public SocialHttpResponse GetPhotos(FacebookGetPhotosOptions options) {
     if (options == null) throw new ArgumentNullException("options");
     return Client.DoAuthenticatedGetRequest("/" + options.Identifier + "/photos", options);
 }