Package microsoft.dynamics.crm.entity
Class Picklistmapping
- java.lang.Object
-
- microsoft.dynamics.crm.entity.Crmbaseentity
-
- microsoft.dynamics.crm.entity.Picklistmapping
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.ODataEntityType,com.github.davidmoten.odata.client.ODataType
public class Picklistmapping extends Crmbaseentity implements com.github.davidmoten.odata.client.ODataEntityType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPicklistmapping.Builder
-
Field Summary
Fields Modifier and Type Field Description protected UUID_columnmappingid_valueprotected UUID_createdby_valueprotected UUID_createdonbehalfby_valueprotected UUID_modifiedby_valueprotected UUID_modifiedonbehalfby_valueprotected Integercomponentstateprotected OffsetDateTimecreatedonprotected Stringintroducedversionprotected Booleanismanagedprotected OffsetDateTimemodifiedonprotected OffsetDateTimeoverwritetimeprotected UUIDpicklistmappingidprotected UUIDpicklistmappingiduniqueprotected Integerprocesscodeprotected UUIDsolutionidprotected Stringsourcevalueprotected Integerstatecodeprotected Integerstatuscodeprotected Integertargetvalue-
Fields inherited from class microsoft.dynamics.crm.entity.Crmbaseentity
changedFields, contextPath, odataType, unmappedFields
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedPicklistmapping()
-
Method Summary
-
-
-
Field Detail
-
modifiedon
protected OffsetDateTime modifiedon
-
createdon
protected OffsetDateTime createdon
-
componentstate
protected Integer componentstate
-
picklistmappingid
protected UUID picklistmappingid
-
statuscode
protected Integer statuscode
-
sourcevalue
protected String sourcevalue
-
_createdonbehalfby_value
protected UUID _createdonbehalfby_value
-
_modifiedonbehalfby_value
protected UUID _modifiedonbehalfby_value
-
overwritetime
protected OffsetDateTime overwritetime
-
targetvalue
protected Integer targetvalue
-
_columnmappingid_value
protected UUID _columnmappingid_value
-
_modifiedby_value
protected UUID _modifiedby_value
-
solutionid
protected UUID solutionid
-
picklistmappingidunique
protected UUID picklistmappingidunique
-
processcode
protected Integer processcode
-
introducedversion
protected String introducedversion
-
_createdby_value
protected UUID _createdby_value
-
statecode
protected Integer statecode
-
ismanaged
protected Boolean ismanaged
-
-
Method Detail
-
odataTypeName
public String odataTypeName()
- Specified by:
odataTypeNamein interfacecom.github.davidmoten.odata.client.ODataType- Overrides:
odataTypeNamein classCrmbaseentity
-
builderPicklistmapping
public static Picklistmapping.Builder builderPicklistmapping()
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
-
getChangedFields
public com.github.davidmoten.odata.client.internal.ChangedFields getChangedFields()
- Specified by:
getChangedFieldsin interfacecom.github.davidmoten.odata.client.ODataEntityType- Overrides:
getChangedFieldsin classCrmbaseentity
-
postInject
public void postInject(boolean addKeysToContextPath)
- Specified by:
postInjectin interfacecom.github.davidmoten.odata.client.ODataType- Overrides:
postInjectin classCrmbaseentity
-
getModifiedon
public Optional<OffsetDateTime> getModifiedon()
-
withModifiedon
public Picklistmapping withModifiedon(OffsetDateTime modifiedon)
-
getCreatedon
public Optional<OffsetDateTime> getCreatedon()
-
withCreatedon
public Picklistmapping withCreatedon(OffsetDateTime createdon)
-
withComponentstate
public Picklistmapping withComponentstate(Integer componentstate)
-
withPicklistmappingid
public Picklistmapping withPicklistmappingid(UUID picklistmappingid)
-
withStatuscode
public Picklistmapping withStatuscode(Integer statuscode)
-
withSourcevalue
public Picklistmapping withSourcevalue(String sourcevalue)
-
with_createdonbehalfby_value
public Picklistmapping with_createdonbehalfby_value(UUID _createdonbehalfby_value)
-
with_modifiedonbehalfby_value
public Picklistmapping with_modifiedonbehalfby_value(UUID _modifiedonbehalfby_value)
-
getOverwritetime
public Optional<OffsetDateTime> getOverwritetime()
-
withOverwritetime
public Picklistmapping withOverwritetime(OffsetDateTime overwritetime)
-
withTargetvalue
public Picklistmapping withTargetvalue(Integer targetvalue)
-
with_columnmappingid_value
public Picklistmapping with_columnmappingid_value(UUID _columnmappingid_value)
-
with_modifiedby_value
public Picklistmapping with_modifiedby_value(UUID _modifiedby_value)
-
withSolutionid
public Picklistmapping withSolutionid(UUID solutionid)
-
withPicklistmappingidunique
public Picklistmapping withPicklistmappingidunique(UUID picklistmappingidunique)
-
withProcesscode
public Picklistmapping withProcesscode(Integer processcode)
-
withIntroducedversion
public Picklistmapping withIntroducedversion(String introducedversion)
-
with_createdby_value
public Picklistmapping with_createdby_value(UUID _createdby_value)
-
withStatecode
public Picklistmapping withStatecode(Integer statecode)
-
withIsmanaged
public Picklistmapping withIsmanaged(Boolean ismanaged)
-
withUnmappedField
public Picklistmapping withUnmappedField(String name, Object value)
- Overrides:
withUnmappedFieldin classCrmbaseentity
-
getColumnmappingid
public ColumnmappingRequest getColumnmappingid()
-
getModifiedby
public SystemuserRequest getModifiedby()
-
getCreatedonbehalfby
public SystemuserRequest getCreatedonbehalfby()
-
getCreatedby
public SystemuserRequest getCreatedby()
-
getModifiedonbehalfby
public SystemuserRequest getModifiedonbehalfby()
-
getUnmappedFields
public com.github.davidmoten.odata.client.UnmappedFields getUnmappedFields()
- Specified by:
getUnmappedFieldsin interfacecom.github.davidmoten.odata.client.ODataType- Overrides:
getUnmappedFieldsin classCrmbaseentity
-
patch
public Picklistmapping patch()
Submits only changed fields for update and returns an immutable copy ofthiswith changed fields reset.- Overrides:
patchin classCrmbaseentity- Returns:
- a copy of
thiswith changed fields reset - Throws:
com.github.davidmoten.odata.client.ClientException- if HTTP response is not as expected
-
put
public Picklistmapping put()
Submits all fields for update and returns an immutable copy ofthiswith changed fields reset (they were ignored anyway).- Overrides:
putin classCrmbaseentity- Returns:
- a copy of
thiswith changed fields reset - Throws:
com.github.davidmoten.odata.client.ClientException- if HTTP response is not as expected
-
toString
public String toString()
- Overrides:
toStringin classCrmbaseentity
-
-