Show / Hide Table of Contents

Class DirectoryChromeosdevicesCommandResult

The result of executing a command.

Inheritance
System.Object
DirectoryChromeosdevicesCommandResult
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.Admin.Directory.directory_v1.Data
Assembly: Google.Apis.Admin.Directory.directory_v1.dll
Syntax
public class DirectoryChromeosdevicesCommandResult : IDirectResponseSchema

Properties

ErrorMessage

The error message with a short explanation as to why the command failed. Only present if the command failed.

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

ETag

The ETag of the item.

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

ExecuteTime

The time at which the command was executed or failed to execute.

Declaration
[JsonProperty("executeTime")]
public virtual object ExecuteTime { get; set; }
Property Value
Type Description
System.Object

Result

The result of the command.

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

Implements

IDirectResponseSchema
Back to top