Show / Hide Table of Contents

Class SyncResult

Represents the result of a sync operation.

Inheritance
System.Object
SyncResult
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
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
Back to top Copyright © 2015-2016 Contentful
Generated by DocFX