class Google::Apis::BigquerydatatransferV1::TransferMessage
Represents a user facing message for a particular data transfer run.
Attributes
message_text[RW]
Message text. Corresponds to the JSON property `messageText` @return [String]
message_time[RW]
Time when message was logged. Corresponds to the JSON property `messageTime` @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/bigquerydatatransfer_v1/classes.rb, line 919 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/bigquerydatatransfer_v1/classes.rb, line 924 def update!(**args) @message_text = args[:message_text] if args.key?(:message_text) @message_time = args[:message_time] if args.key?(:message_time) @severity = args[:severity] if args.key?(:severity) end