Skip to content

Commit

Permalink
.NET SDK Resource Provider:'PolicyInsights' (Azure#5573)
Browse files Browse the repository at this point in the history
REST Spec PR 'Azure/azure-rest-api-specs#5408'
REST Spec PR Author 'j5lim'
REST Spec PR Last commit
  • Loading branch information
adxsdknet authored and mentat9 committed Jun 10, 2019
1 parent a8bf086 commit 3249ec9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public ExpressionEvaluationDetails()
/// expression value.</param>
/// <param name="operatorProperty">Operator to compare the expression
/// value and the target value.</param>
public ExpressionEvaluationDetails(string result = default(string), string expression = default(string), string path = default(string), string expressionValue = default(string), string targetValue = default(string), string operatorProperty = default(string))
public ExpressionEvaluationDetails(string result = default(string), string expression = default(string), string path = default(string), object expressionValue = default(object), object targetValue = default(object), string operatorProperty = default(string))
{
Result = result;
Expression = expression;
Expand Down Expand Up @@ -79,13 +79,13 @@ public ExpressionEvaluationDetails()
/// Gets or sets value of the expression.
/// </summary>
[JsonProperty(PropertyName = "expressionValue")]
public string ExpressionValue { get; set; }
public object ExpressionValue { get; set; }

/// <summary>
/// Gets or sets target value to be compared with the expression value.
/// </summary>
[JsonProperty(PropertyName = "targetValue")]
public string TargetValue { get; set; }
public object TargetValue { get; set; }

/// <summary>
/// Gets or sets operator to compare the expression value and the
Expand Down

0 comments on commit 3249ec9

Please sign in to comment.