Package odata.msgraph.client.complex
Class AttributeMapping
- java.lang.Object
-
- odata.msgraph.client.complex.AttributeMapping
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.ODataType
public class AttributeMapping extends Object implements com.github.davidmoten.odata.client.ODataType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAttributeMapping.Builder
-
Field Summary
Fields Modifier and Type Field Description protected com.github.davidmoten.odata.client.ContextPathcontextPathprotected StringdefaultValueprotected BooleanexportMissingReferencesprotected AttributeFlowBehaviorflowBehaviorprotected AttributeFlowTypeflowTypeprotected IntegermatchingPriorityprotected StringodataTypeprotected AttributeMappingSourcesourceprotected StringtargetAttributeNameprotected com.github.davidmoten.odata.client.internal.UnmappedFieldsImplunmappedFields
-
Constructor Summary
Constructors Modifier Constructor Description protectedAttributeMapping()
-
Method Summary
-
-
-
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
-
defaultValue
protected String defaultValue
-
exportMissingReferences
protected Boolean exportMissingReferences
-
flowBehavior
protected AttributeFlowBehavior flowBehavior
-
flowType
protected AttributeFlowType flowType
-
matchingPriority
protected Integer matchingPriority
-
source
protected AttributeMappingSource source
-
targetAttributeName
protected String targetAttributeName
-
-
Method Detail
-
odataTypeName
public String odataTypeName()
- Specified by:
odataTypeNamein interfacecom.github.davidmoten.odata.client.ODataType
-
withDefaultValue
public AttributeMapping withDefaultValue(String defaultValue)
-
withExportMissingReferences
public AttributeMapping withExportMissingReferences(Boolean exportMissingReferences)
-
getFlowBehavior
public Optional<AttributeFlowBehavior> getFlowBehavior()
-
withFlowBehavior
public AttributeMapping withFlowBehavior(AttributeFlowBehavior flowBehavior)
-
getFlowType
public Optional<AttributeFlowType> getFlowType()
-
withFlowType
public AttributeMapping withFlowType(AttributeFlowType flowType)
-
withMatchingPriority
public AttributeMapping withMatchingPriority(Integer matchingPriority)
-
getSource
public Optional<AttributeMappingSource> getSource()
-
withSource
public AttributeMapping withSource(AttributeMappingSource source)
-
withTargetAttributeName
public AttributeMapping withTargetAttributeName(String targetAttributeName)
-
withUnmappedField
public AttributeMapping withUnmappedField(String name, Object 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 AttributeMapping.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
-
-