public virtual void DeleteSavedSearch(DeleteSavedSearchOptions options, Action<TwitterSavedSearch, TwitterResponse> action)
		{
			var id = options.Id;
			
			WithHammock(WebMethod.Post, action, "saved_searches/destroy/{id}", FormatAsString, "?id=", id);
		}
		public virtual IAsyncResult BeginDeleteSavedSearch(DeleteSavedSearchOptions options)
		{
			var id = options.Id;
				

			return BeginWithHammock<TwitterSavedSearch>(WebMethod.Post, "saved_searches/destroy/{id}", FormatAsString, "?id=", id);
		}
		public virtual Task<TwitterAsyncResult<TwitterSavedSearch>> DeleteSavedSearchAsync(DeleteSavedSearchOptions options)
		{
			var id = options.Id;
			
			return WithHammockTask<TwitterSavedSearch>(_client, WebMethod.Post, "saved_searches/destroy/{id}", FormatAsString, "?id=", id);
		}
		public virtual Task<TwitterResponse<TwitterSavedSearch>> DeleteSavedSearchAsync(DeleteSavedSearchOptions options)
		{
			var id = options.Id;
				
			
			return ExecuteRequest<TwitterSavedSearch>(HttpMethod.Post, "saved_searches/destroy/{id}", FormatAsString, "?id=", id);
		}
		public virtual IAsyncResult DeleteSavedSearch(DeleteSavedSearchOptions options, Action<TwitterSavedSearch, TwitterResponse> action)
		{
			var id = options.Id;
				

			return WithHammock(_client, WebMethod.Post, action, "saved_searches/destroy/{id}", FormatAsString, "?id=", id);
		}