class Google::Apis::AdminDirectoryV1::AuxiliaryMessage

Auxiliary message about issues with printers or settings. Example: ` message_type:AUXILIARY_MESSAGE_WARNING, field_mask:make_and_model, message:“ Given printer is invalid or no longer supported.”`

Attributes

auxiliary_message[RW]

Human readable message in English. Example: “Given printer is invalid or no longer supported.” Corresponds to the JSON property `auxiliaryMessage` @return [String]

field_mask[RW]

Field that this message concerns. Corresponds to the JSON property `fieldMask` @return [String]

severity[RW]

Message severity Corresponds to the JSON property `severity` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/admin_directory_v1/classes.rb, line 215
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 220
def update!(**args)
  @auxiliary_message = args[:auxiliary_message] if args.key?(:auxiliary_message)
  @field_mask = args[:field_mask] if args.key?(:field_mask)
  @severity = args[:severity] if args.key?(:severity)
end