Package com.microsoft.graph.models
Class FilterClause
java.lang.Object
com.microsoft.graph.models.FilterClause
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class FilterClause
extends Object
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Filter Clause.
-
Field Summary
FieldsModifier and TypeFieldDescriptionthe OData type of the object as returned by the serviceThe Operator Name.The Source Operand Name.The Target Operand. -
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 -
operatorName
@SerializedName(value="operatorName", alternate="OperatorName") @Expose @Nullable public String operatorNameThe Operator Name. Name of the operator to be applied to the source and target operands. Must be one of the supported operators. Supported operators can be discovered. -
sourceOperandName
@SerializedName(value="sourceOperandName", alternate="SourceOperandName") @Expose @Nullable public String sourceOperandNameThe Source Operand Name. Name of source operand (the operand being tested). The source operand name must match one of the attribute names on the source object. -
targetOperand
@SerializedName(value="targetOperand", alternate="TargetOperand") @Expose @Nullable public FilterOperand targetOperandThe Target Operand. Values that the source operand will be tested against.
-
-
Constructor Details
-
FilterClause
public FilterClause()
-
-
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
-