Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ChromeBrowserProfileCommandCommandResult

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/chromemanagement_v1/classes.rb,
lib/google/apis/chromemanagement_v1/representations.rb,
lib/google/apis/chromemanagement_v1/representations.rb

Overview

Result of the execution of a command.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromeManagementVersionsV1ChromeBrowserProfileCommandCommandResult

Returns a new instance of GoogleChromeManagementVersionsV1ChromeBrowserProfileCommandCommandResult.



4798
4799
4800
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4798

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#client_execution_timeString

Output only. Timestamp of the client execution of the remote command. Corresponds to the JSON property clientExecutionTime

Returns:

  • (String)


4785
4786
4787
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4785

def client_execution_time
  @client_execution_time
end

#result_codeString

Output only. Result code that indicates the type of error or success of the command. Corresponds to the JSON property resultCode

Returns:

  • (String)


4791
4792
4793
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4791

def result_code
  @result_code
end

#result_typeString

Output only. Result type of the remote command. Corresponds to the JSON property resultType

Returns:

  • (String)


4796
4797
4798
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4796

def result_type
  @result_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4803
4804
4805
4806
4807
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4803

def update!(**args)
  @client_execution_time = args[:client_execution_time] if args.key?(:client_execution_time)
  @result_code = args[:result_code] if args.key?(:result_code)
  @result_type = args[:result_type] if args.key?(:result_type)
end