Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ class ExpressionEvaluationDetails {
* @property {string} [expression] Expression evaluated.
* @property {string} [path] Property path if the expression is a field or an
* alias.
* @property {string} [expressionValue] Value of the expression.
* @property {string} [targetValue] Target value to be compared with the
* @property {object} [expressionValue] Value of the expression.
* @property {object} [targetValue] Target value to be compared with the
* expression value.
* @property {string} [operator] Operator to compare the expression value and
* the target value.
Expand Down Expand Up @@ -69,14 +69,14 @@ class ExpressionEvaluationDetails {
required: false,
serializedName: 'expressionValue',
type: {
name: 'String'
name: 'Object'
}
},
targetValue: {
required: false,
serializedName: 'targetValue',
type: {
name: 'String'
name: 'Object'
}
},
operator: {
Expand Down
4 changes: 2 additions & 2 deletions lib/services/policyinsightsManagement/lib/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -439,11 +439,11 @@ export interface ExpressionEvaluationDetails {
/**
* Value of the expression.
*/
expressionValue?: string;
expressionValue?: any;
/**
* Target value to be compared with the expression value.
*/
targetValue?: string;
targetValue?: any;
/**
* Operator to compare the expression value and the target value.
*/
Expand Down