parseExpressionResponse-Ressourcentyp
Namespace: microsoft.graph
Stellt die Antwort der parseExpression-Aktion dar.
Eigenschaften
Eigenschaft | Typ | Beschreibung |
---|---|---|
error | publicError | Fehlerdetails, wenn die Ausdrucksauswertung zu einem Fehler geführt hat. |
evaluationResult | String collection | Eine Auflistung von Werten, die durch die Auswertung des Ausdrucks erzeugt werden. |
evaluationSucceeded | Boolesch |
true , wenn die Auswertung erfolgreich war. |
parsedExpression | attributeMappingSource | Ein attributeMappingSource-Objekt , das den analysierten Ausdruck darstellt. |
parsingSucceed | Boolesch |
true , wenn der Ausdruck erfolgreich analysiert wurde. |
JSON-Darstellung
Die folgende JSON-Darstellung zeigt den Ressourcentyp.
{
"@odata.type": "#microsoft.graph.parseExpressionResponse",
"error": {
"@odata.type": "microsoft.graph.publicError"
},
"evaluationSucceeded": "Boolean",
"evaluationResult": [
"String"
],
"parsedExpression": {
"@odata.type": "microsoft.graph.attributeMappingSource"
},
"parsingSucceeded": "Boolean"
}