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 Details

    • oDataType

      @SerializedName("@odata.type") @Expose @Nullable public String oDataType
      the OData type of the object as returned by the service
    • error

      @SerializedName(value="error", alternate="Error") @Expose @Nullable public PublicError error
      The Error. Error details, if expression evaluation resulted in an error.
    • evaluationResult

      @SerializedName(value="evaluationResult", alternate="EvaluationResult") @Expose @Nullable public List<String> evaluationResult
      The Evaluation Result. A collection of values produced by the evaluation of the expression.
    • evaluationSucceeded

      @SerializedName(value="evaluationSucceeded", alternate="EvaluationSucceeded") @Expose @Nullable public Boolean evaluationSucceeded
      The Evaluation Succeeded. true if the evaluation was successful.
    • parsedExpression

      @SerializedName(value="parsedExpression", alternate="ParsedExpression") @Expose @Nullable public AttributeMappingSource parsedExpression
      The Parsed Expression. An attributeMappingSource object representing the parsed expression.
    • parsingSucceeded

      @SerializedName(value="parsingSucceeded", alternate="ParsingSucceeded") @Expose @Nullable public Boolean parsingSucceeded
      The 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:
      additionalDataManager in interface com.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:
      setRawObject in interface com.microsoft.graph.serializer.IJsonBackedObject
      Parameters:
      serializer - the serializer
      json - the JSON object to set this object to