/// <summary> /// Runs a boost post request of existing attributes on a Factual entity. /// </summary> /// <param name="tableName">the name of the table in which to boost attributes for an entity (e.g., "places").</param> /// <param name="boost">the boost to perform on a Factual entity.</param> /// <returns>the response of running boost post request on a Factual entity.</returns> public string Boost(string tableName, Boost boost) { return RequestPost("t/" + tableName + "/boost", boost.ToUrlQuery(), ""); }
/// <summary> /// Runs a boost post request of existing attributes on a Factual entity. /// </summary> /// <param name="tableName">the name of the table in which to boost attributes for an entity (e.g., "places").</param> /// <param name="boost">the boost to perform on a Factual entity.</param> /// <returns>the response of running boost post request on a Factual entity.</returns> public string Boost(string tableName, Boost boost) { return(RequestPost("t/" + tableName + "/boost", boost.ToUrlQuery(), "")); }