Class: Google::Apis::RealtimebiddingV1::RemoveTargetedPublishersRequest
- Inherits:
-
Object
- Object
- Google::Apis::RealtimebiddingV1::RemoveTargetedPublishersRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/realtimebidding_v1/classes.rb,
generated/google/apis/realtimebidding_v1/representations.rb,
generated/google/apis/realtimebidding_v1/representations.rb
Overview
A request to stop targeting publishers in a specific configuration. The pretargeting configuration itself specifies how these publishers are targeted in PretargetingConfig.publisherTargeting.
Instance Attribute Summary collapse
-
#publisher_ids ⇒ Array<String>
A list of publisher IDs to stop targeting in the pretargeting configuration.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RemoveTargetedPublishersRequest
constructor
A new instance of RemoveTargetedPublishersRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RemoveTargetedPublishersRequest
Returns a new instance of RemoveTargetedPublishersRequest.
1499 1500 1501 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 1499 def initialize(**args) update!(**args) end |
Instance Attribute Details
#publisher_ids ⇒ Array<String>
A list of publisher IDs to stop targeting in the pretargeting configuration.
These values will be removed from the list of targeted publisher IDs in
PretargetingConfig.publisherTargeting.values. Publishers are identified by
their publisher ID from ads.txt / app-ads.txt. See https://iabtechlab.com/ads-
txt/ and https://iabtechlab.com/app-ads-txt/ for more details.
Corresponds to the JSON property publisherIds
1497 1498 1499 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 1497 def publisher_ids @publisher_ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1504 1505 1506 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 1504 def update!(**args) @publisher_ids = args[:publisher_ids] if args.key?(:publisher_ids) end |