blob: a527217e80ac941cd9a3830a138e18cc6897bbdb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// ParseExpressionResponse undocumented
type ParseExpressionResponse struct {
// Object is the base model of ParseExpressionResponse
Object
// Error undocumented
Error *PublicError `json:"error,omitempty"`
// EvaluationSucceeded undocumented
EvaluationSucceeded *bool `json:"evaluationSucceeded,omitempty"`
// EvaluationResult undocumented
EvaluationResult []string `json:"evaluationResult,omitempty"`
// ParsedExpression undocumented
ParsedExpression *AttributeMappingSource `json:"parsedExpression,omitempty"`
// ParsingSucceeded undocumented
ParsingSucceeded *bool `json:"parsingSucceeded,omitempty"`
}
|