Show / Hide Table of Contents

Class CreateContainerVersionResponse

Create container versions response.

Inheritance
System.Object
CreateContainerVersionResponse
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 CreateContainerVersionResponse : IDirectResponseSchema

Properties

CompilerError

Compiler errors or not.

Declaration
[JsonProperty("compilerError")]
public virtual bool? CompilerError { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ContainerVersion

The container version created.

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

ETag

The ETag of the item.

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

NewWorkspacePath

Auto generated workspace path created as a result of version creation. This field should only be populated if the created version was not a quick preview.

Declaration
[JsonProperty("newWorkspacePath")]
public virtual string NewWorkspacePath { get; set; }
Property Value
Type Description
System.String

SyncStatus

Whether version creation failed when syncing the workspace to the latest container version.

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

Implements

IDirectResponseSchema
Back to top