class Google::Apis::AdminDirectoryV1::DirectoryChromeosdevicesCommandResult

The result of executing a command.

Attributes

error_message[RW]

The error message with a short explanation as to why the command failed. Only present if the command failed. Corresponds to the JSON property `errorMessage` @return [String]

execute_time[RW]

The time at which the command was executed or failed to execute. Corresponds to the JSON property `executeTime` @return [String]

result[RW]

The result of the command. Corresponds to the JSON property `result` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/admin_directory_v1/classes.rb, line 1669
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/admin_directory_v1/classes.rb, line 1674
def update!(**args)
  @error_message = args[:error_message] if args.key?(:error_message)
  @execute_time = args[:execute_time] if args.key?(:execute_time)
  @result = args[:result] if args.key?(:result)
end