class Google::Apis::DoubleclickbidmanagerV1::Note
Publisher comment from Rubicon.
Attributes
id[RW]
Note id. Corresponds to the JSON property `id` @return [String]
message[RW]
Message from publisher. Corresponds to the JSON property `message` @return [String]
source[RW]
Equals “publisher” for notification from Rubicon. Corresponds to the JSON property `source` @return [String]
timestamp[RW]
Time when the note was added, e.g. “2015-12-16T17:25:35.000-08:00”. Corresponds to the JSON property `timestamp` @return [String]
username[RW]
Publisher user name. Corresponds to the JSON property `username` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/doubleclickbidmanager_v1/classes.rb, line 190 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/doubleclickbidmanager_v1/classes.rb, line 195 def update!(**args) @id = args[:id] if args.key?(:id) @message = args[:message] if args.key?(:message) @source = args[:source] if args.key?(:source) @timestamp = args[:timestamp] if args.key?(:timestamp) @username = args[:username] if args.key?(:username) end