Package microsoft.dynamics.crm.complex
Class SyncSubscriptionDataResponse
- java.lang.Object
-
- microsoft.dynamics.crm.complex.SyncSubscriptionDataResponse
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.ODataType
public class SyncSubscriptionDataResponse extends Object implements com.github.davidmoten.odata.client.ODataType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSyncSubscriptionDataResponse.Builder
-
Field Summary
Fields Modifier and Type Field Description protected com.github.davidmoten.odata.client.ContextPathcontextPathprotected SubscriptionDatadataprotected BooleanisFinalPageprotected StringodataTypeprotected StringsyncTokenprotected com.github.davidmoten.odata.client.internal.UnmappedFieldsImplunmappedFields
-
Constructor Summary
Constructors Modifier Constructor Description protectedSyncSubscriptionDataResponse()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SyncSubscriptionDataResponse.Builderbuilder()Returns a builder which is used to create a new instance of this class (given that this class is immutable).Optional<SubscriptionData>getData()Optional<Boolean>getIsFinalPage()Optional<String>getSyncToken()com.github.davidmoten.odata.client.UnmappedFieldsgetUnmappedFields()StringodataTypeName()voidpostInject(boolean addKeysToContextPath)StringtoString()SyncSubscriptionDataResponsewithData(SubscriptionData data)SyncSubscriptionDataResponsewithIsFinalPage(Boolean isFinalPage)SyncSubscriptionDataResponsewithSyncToken(String syncToken)SyncSubscriptionDataResponsewithUnmappedField(String name, Object 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
-
data
protected SubscriptionData data
-
syncToken
protected String syncToken
-
isFinalPage
protected Boolean isFinalPage
-
-
Method Detail
-
odataTypeName
public String odataTypeName()
- Specified by:
odataTypeNamein interfacecom.github.davidmoten.odata.client.ODataType
-
getData
public Optional<SubscriptionData> getData()
-
withData
public SyncSubscriptionDataResponse withData(SubscriptionData data)
-
withSyncToken
public SyncSubscriptionDataResponse withSyncToken(String syncToken)
-
withIsFinalPage
public SyncSubscriptionDataResponse withIsFinalPage(Boolean isFinalPage)
-
withUnmappedField
public SyncSubscriptionDataResponse 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 SyncSubscriptionDataResponse.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
-
-