Package com.microsoft.graph.models
Class ParseExpressionResponse
java.lang.Object
com.microsoft.graph.models.ParseExpressionResponse
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class ParseExpressionResponse
extends Object
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Parse Expression Response.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Error.The Evaluation Result.The Evaluation Succeeded.the OData type of the object as returned by the serviceThe Parsed Expression.The Parsing Succeeded. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal com.microsoft.graph.serializer.AdditionalDataManagervoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON object
-
Field Details
-
oDataType
the OData type of the object as returned by the service -
error
The Error. Error details, if expression evaluation resulted in an error. -
evaluationResult
@SerializedName(value="evaluationResult", alternate="EvaluationResult") @Expose @Nullable public List<String> evaluationResultThe Evaluation Result. A collection of values produced by the evaluation of the expression. -
evaluationSucceeded
@SerializedName(value="evaluationSucceeded", alternate="EvaluationSucceeded") @Expose @Nullable public Boolean evaluationSucceededThe Evaluation Succeeded. true if the evaluation was successful. -
parsedExpression
@SerializedName(value="parsedExpression", alternate="ParsedExpression") @Expose @Nullable public AttributeMappingSource parsedExpressionThe Parsed Expression. An attributeMappingSource object representing the parsed expression. -
parsingSucceeded
@SerializedName(value="parsingSucceeded", alternate="ParsingSucceeded") @Expose @Nullable public Boolean parsingSucceededThe Parsing Succeeded. true if the expression was parsed successfully.
-
-
Constructor Details
-
ParseExpressionResponse
public ParseExpressionResponse()
-
-
Method Details
-
additionalDataManager
@Nonnull public final com.microsoft.graph.serializer.AdditionalDataManager additionalDataManager()- Specified by:
additionalDataManagerin interfacecom.microsoft.graph.serializer.IJsonBackedObject
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-