class Google::Apis::Adexchangebuyer2V2beta1::PauseProposalDealsRequest
Request message to pause serving for finalized deals.
Attributes
external_deal_ids[RW]
The external_deal_id's of the deals to be paused. If empty, all the deals in the proposal will be paused. Corresponds to the JSON property `externalDealIds` @return [Array<String>]
reason[RW]
The reason why the deals are being paused. This human readable message will be displayed in the seller's UI. (Max length: 1000 unicode code units.) Corresponds to the JSON property `reason` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/adexchangebuyer2_v2beta1/classes.rb, line 2988 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/adexchangebuyer2_v2beta1/classes.rb, line 2993 def update!(**args) @external_deal_ids = args[:external_deal_ids] if args.key?(:external_deal_ids) @reason = args[:reason] if args.key?(:reason) end