class Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotCommandStatus
The internal status of the command result.
Attributes
code[RW]
The status code. Corresponds to the JSON property `code` @return [String]
message[RW]
The error message. Corresponds to the JSON property `message` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/remotebuildexecution_v1alpha/classes.rb, line 1648 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/remotebuildexecution_v1alpha/classes.rb, line 1653 def update!(**args) @code = args[:code] if args.key?(:code) @message = args[:message] if args.key?(:message) end