Class SyncResult
Represents the result of a sync operation.
Inheritance
Inherited Members
Namespace:Contentful.Core.Models
Assembly:cs.temp.dll.dll
Syntax
public class SyncResult
Properties
Assets
The System.Collections.Generic.IEnumerable<T> of SyncedAsset fetched by the sync operation. Note that the asset fields are returned as a dynamic as the data structure potentially contains elements that are not serializable directly to a class. For more information refer to the documentation.
Declaration
public IEnumerable<SyncedAsset> Assets { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<SyncedAsset> |
DeletedAssets
The System.Collections.Generic.IEnumerable<T> of deleted assets fetched by the sync operation.
Declaration
public IEnumerable<SystemProperties> DeletedAssets { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<SystemProperties> |
DeletedEntries
The System.Collections.Generic.IEnumerable<T> of deleted entries fetched by the sync operation.
Declaration
public IEnumerable<SystemProperties> DeletedEntries { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<SystemProperties> |
Entries
The System.Collections.Generic.IEnumerable<T> of Entry<T> fetched by the sync operation. Note that the entry fields are returned as a dynamic as the data structure potentially contains elements that are not serializable directly to a class. For more information refer to the documentation.
Declaration
public IEnumerable<Entry<dynamic>> Entries { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<Entry<System.Object>> |
NextPageUrl
Indicates that there are further results to be fetched in the current sync operation.
Declaration
public string NextPageUrl { get; set; }
Property Value
Type | Description |
---|---|
System.String |
NextSyncUrl
The next URL to call to fetch delta updates between this sync and the next one.
Declaration
public string NextSyncUrl { get; set; }
Property Value
Type | Description |
---|---|
System.String |
SystemProperties
Common system managed metadata properties.
Declaration
public SystemProperties SystemProperties { get; set; }
Property Value
Type | Description |
---|---|
SystemProperties |