/// <summary>
 /// Gets information about the app with the specified <paramref name="identifier"/>.
 /// </summary>
 /// <param name="identifier">The identifier of the app. Can either be "app" or the ID of the app.</param>
 /// <param name="fields">A collection of the fields that should be returned by the API.</param>
 /// <returns>An instance of <see cref="FacebookGetApplicationResponse"/> representing the response.</returns>
 public FacebookGetApplicationResponse GetApplication(string identifier, FacebookFieldsCollection fields)
 {
     return(FacebookGetApplicationResponse.ParseResponse(Raw.GetApplication(identifier, fields)));
 }
 /// <summary>
 /// Gets information about the app matching the specified <paramref name="options"/>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 /// <returns>An instance of <see cref="FacebookGetApplicationResponse"/> representing the response.</returns>
 public FacebookGetApplicationResponse GetApplication(FacebookGetApplicationOptions options)
 {
     return(FacebookGetApplicationResponse.ParseResponse(Raw.GetApplication(options)));
 }
 /// <summary>
 /// Gets information about the app with the specified <paramref name="identifier"/>.
 /// </summary>
 /// <param name="identifier">The identifier of the app. Can either be "app" or the ID of the app.</param>
 /// <returns>An instance of <see cref="FacebookGetApplicationResponse"/> representing the response.</returns>
 public FacebookGetApplicationResponse GetApplication(string identifier)
 {
     return(FacebookGetApplicationResponse.ParseResponse(Raw.GetApplication(identifier)));
 }