class Google::Apis::DoubleclickbidmanagerV1::NotifyProposalChangeRequest

NotifyProposalChange request.

Attributes

action[RW]

Action taken by publisher. One of: Accept, Decline, Append Corresponds to the JSON property `action` @return [String]

href[RW]

URL to access proposal detail. Corresponds to the JSON property `href` @return [String]

id[RW]

Below are contents of notification from Rubicon. Proposal id. Corresponds to the JSON property `id` @return [String]

notes[RW]

Notes from publisher Corresponds to the JSON property `notes` @return [Array<Google::Apis::DoubleclickbidmanagerV1::Note>]

token[RW]

Deal token, available when proposal is accepted by publisher. Corresponds to the JSON property `token` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/doubleclickbidmanager_v1/classes.rb, line 233
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 238
def update!(**args)
  @action = args[:action] if args.key?(:action)
  @href = args[:href] if args.key?(:href)
  @id = args[:id] if args.key?(:id)
  @notes = args[:notes] if args.key?(:notes)
  @token = args[:token] if args.key?(:token)
end