Show / Hide Table of Contents

Class DirectoryChromeosdevicesCommand

Information regarding a command that was issued to a device.

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

Properties

CommandExpireTime

The time at which the command will expire. If the device doesn't execute the command within this time the command will become expired.

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

CommandId

Unique ID of a device command.

Declaration
[JsonProperty("commandId")]
public virtual long? CommandId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

CommandResult

The result of the command execution.

Declaration
[JsonProperty("commandResult")]
public virtual DirectoryChromeosdevicesCommandResult CommandResult { get; set; }
Property Value
Type Description
DirectoryChromeosdevicesCommandResult

ETag

The ETag of the item.

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

IssueTime

The timestamp when the command was issued by the admin.

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

Payload

The payload that the command specified, if any.

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

State

Indicates the command state.

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

Type

The type of the command.

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

Implements

IDirectResponseSchema
Back to top