Show / Hide Table of Contents

Class SyncWorkspaceResponse

A response after synchronizing the workspace to the latest container version.

Inheritance
System.Object
SyncWorkspaceResponse
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.TagManager.v2.Data
Assembly: Google.Apis.TagManager.v2.dll
Syntax
public class SyncWorkspaceResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

MergeConflict

The merge conflict after sync. If this field is not empty, the sync is still treated as successful. But a version cannot be created until all conflicts are resolved.

Declaration
[JsonProperty("mergeConflict")]
public virtual IList<MergeConflict> MergeConflict { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<MergeConflict>

SyncStatus

Indicates whether synchronization caused a merge conflict or sync error.

Declaration
[JsonProperty("syncStatus")]
public virtual SyncStatus SyncStatus { get; set; }
Property Value
Type Description
SyncStatus

Implements

IDirectResponseSchema
Back to top