class Google::Apis::DataflowV1b3::StructuredMessage

A rich message format, including a human readable string, a key for identifying the message, and structured data associated with the message for programmatic consumption.

Attributes

message_key[RW]

Identifier for this message type. Used by external systems to internationalize or personalize message. Corresponds to the JSON property `messageKey` @return [String]

message_text[RW]

Human-readable version of message. Corresponds to the JSON property `messageText` @return [String]

parameters[RW]

The structured data associated with this message. Corresponds to the JSON property `parameters` @return [Array<Google::Apis::DataflowV1b3::Parameter>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dataflow_v1b3/classes.rb, line 5497
def update!(**args)
  @message_key = args[:message_key] if args.key?(:message_key)
  @message_text = args[:message_text] if args.key?(:message_text)
  @parameters = args[:parameters] if args.key?(:parameters)
end