Show / Hide Table of Contents

Class DirectoryChromeosdevicesIssueCommandRequest

A request for issuing a command.

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

Properties

CommandType

The type of command.

Declaration
[JsonProperty("commandType")]
public virtual string CommandType { 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

Payload

The payload for the command, provide it only if command supports it. The following commands support adding payload: - SET_VOLUME: Payload is a stringified JSON object in the form: { "volume": 50 }. The volume has to be an integer in the range [0,100].

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

Implements

IDirectResponseSchema
Back to top