class Google::Apis::AdminDirectoryV1::FailureInfo
Info about failures
Attributes
error_code[RW]
Canonical code for why the update failed to apply. Corresponds to the JSON property `errorCode` @return [String]
error_message[RW]
Failure reason message. Corresponds to the JSON property `errorMessage` @return [String]
printer[RW]
Printer
configuration. Corresponds to the JSON property `printer` @return [Google::Apis::AdminDirectoryV1::Printer]
printer_id[RW]
Id of a failed printer. Corresponds to the JSON property `printerId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/admin_directory_v1/classes.rb, line 1940 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 1945 def update!(**args) @error_code = args[:error_code] if args.key?(:error_code) @error_message = args[:error_message] if args.key?(:error_message) @printer = args[:printer] if args.key?(:printer) @printer_id = args[:printer_id] if args.key?(:printer_id) end