Class AssignmentFilterTypeAndEvaluationResult
- java.lang.Object
-
- odata.msgraph.client.beta.complex.AssignmentFilterTypeAndEvaluationResult
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.ODataType
public class AssignmentFilterTypeAndEvaluationResult extends Object implements com.github.davidmoten.odata.client.ODataType
“Represents the filter type and evalaution result of the filter.”
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAssignmentFilterTypeAndEvaluationResult.Builder
-
Field Summary
Fields Modifier and Type Field Description protected DeviceAndAppManagementAssignmentFilterTypeassignmentFilterTypeprotected com.github.davidmoten.odata.client.ContextPathcontextPathprotected AssignmentFilterEvaluationResultevaluationResultprotected StringodataTypeprotected com.github.davidmoten.odata.client.internal.UnmappedFieldsImplunmappedFields
-
Constructor Summary
Constructors Modifier Constructor Description protectedAssignmentFilterTypeAndEvaluationResult()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AssignmentFilterTypeAndEvaluationResult.Builderbuilder()Returns a builder which is used to create a new instance of this class (given that this class is immutable).Optional<DeviceAndAppManagementAssignmentFilterType>getAssignmentFilterType()“Represents the filter type.”Optional<AssignmentFilterEvaluationResult>getEvaluationResult()“Represents the evalaution result of the filter.”com.github.davidmoten.odata.client.UnmappedFieldsgetUnmappedFields()StringodataTypeName()voidpostInject(boolean addKeysToContextPath)StringtoString()AssignmentFilterTypeAndEvaluationResultwithAssignmentFilterType(DeviceAndAppManagementAssignmentFilterType assignmentFilterType)Returns an immutable copy ofthiswith just theassignmentFilterTypefield changed.AssignmentFilterTypeAndEvaluationResultwithEvaluationResult(AssignmentFilterEvaluationResult evaluationResult)Returns an immutable copy ofthiswith just theevaluationResultfield changed.AssignmentFilterTypeAndEvaluationResultwithUnmappedField(String name, String value)
-
-
-
Field Detail
-
contextPath
protected com.github.davidmoten.odata.client.ContextPath contextPath
-
unmappedFields
protected com.github.davidmoten.odata.client.internal.UnmappedFieldsImpl unmappedFields
-
odataType
protected String odataType
-
assignmentFilterType
protected DeviceAndAppManagementAssignmentFilterType assignmentFilterType
-
evaluationResult
protected AssignmentFilterEvaluationResult evaluationResult
-
-
Method Detail
-
odataTypeName
public String odataTypeName()
- Specified by:
odataTypeNamein interfacecom.github.davidmoten.odata.client.ODataType
-
getAssignmentFilterType
public Optional<DeviceAndAppManagementAssignmentFilterType> getAssignmentFilterType()
“Represents the filter type.”- Returns:
- property assignmentFilterType
-
withAssignmentFilterType
public AssignmentFilterTypeAndEvaluationResult withAssignmentFilterType(DeviceAndAppManagementAssignmentFilterType assignmentFilterType)
Returns an immutable copy ofthiswith just theassignmentFilterTypefield changed. Field description below. The field name is also added to an internal map of changed fields in the returned object so that whenthis.patch()is called (if available)on the returned object only the changed fields are submitted.“Represents the filter type.”
- Parameters:
assignmentFilterType- new value ofassignmentFilterTypefield (as defined in service metadata)- Returns:
- immutable copy of
thiswith just theassignmentFilterTypefield changed
-
getEvaluationResult
public Optional<AssignmentFilterEvaluationResult> getEvaluationResult()
“Represents the evalaution result of the filter.”- Returns:
- property evaluationResult
-
withEvaluationResult
public AssignmentFilterTypeAndEvaluationResult withEvaluationResult(AssignmentFilterEvaluationResult evaluationResult)
Returns an immutable copy ofthiswith just theevaluationResultfield changed. Field description below. The field name is also added to an internal map of changed fields in the returned object so that whenthis. patch()is called (if available)on the returned object only the changed fields are submitted.“Represents the evalaution result of the filter.”
- Parameters:
evaluationResult- new value ofevaluationResultfield (as defined in service metadata)- Returns:
- immutable copy of
thiswith just theevaluationResultfield changed
-
withUnmappedField
public AssignmentFilterTypeAndEvaluationResult withUnmappedField(String name, String value)
-
getUnmappedFields
public com.github.davidmoten.odata.client.UnmappedFields getUnmappedFields()
- Specified by:
getUnmappedFieldsin interfacecom.github.davidmoten.odata.client.ODataType
-
postInject
public void postInject(boolean addKeysToContextPath)
- Specified by:
postInjectin interfacecom.github.davidmoten.odata.client.ODataType
-
builder
public static AssignmentFilterTypeAndEvaluationResult.Builder builder()
Returns a builder which is used to create a new instance of this class (given that this class is immutable).- Returns:
- a new Builder for this class
-
-