/// <summary> /// Updates the goal recommendation to acknowledged state /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='goalRecommendationId'> /// The identifier of the goal recommendation to acknowledge. /// </param> public static object Acknowledge(this IGoalRecommendations operations, string goalRecommendationId) { return(operations.AcknowledgeAsync(goalRecommendationId).GetAwaiter().GetResult()); }
/// <summary> /// Updates the goal recommendation to acknowledged state /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='goalRecommendationId'> /// The identifier of the goal recommendation to acknowledge. /// </param> public static void Acknowledge(this IGoalRecommendations operations, string goalRecommendationId) { operations.AcknowledgeAsync(goalRecommendationId).GetAwaiter().GetResult(); }