/// <summary>
 /// Gets a list of media liked by the authenticated user.
 /// </summary>
 /// <param name="options">The search options with any optional parameters.</param>
 /// <returns>Returns the raw JSON response from the API.</returns>
 public SocialHttpResponse GetLikedMedia(InstagramUserLikedMediaOptions options) {
     return Client.DoAuthenticatedGetRequest("https://api.instagram.com/v1/users/self/media/liked", options);
 }
 /// <summary>
 /// Gets a list of media liked by the authenticated user.
 /// </summary>
 /// <param name="options">The search options with any optional parameters.</param>
 public InstagramLikedMediaResponse GetLikedMedia(InstagramUserLikedMediaOptions options) {
     return InstagramLikedMediaResponse.ParseResponse(Raw.GetLikedMedia(options));
 }