class Google::Apis::AuthorizedbuyersmarketplaceV1::UriTargeting

Represents a list of targeted and excluded URLs (for example, google.com). For Private Auction Deals, URLs are either included or excluded. For Programmatic Guaranteed and Preferred Deals, this doesn’t apply.

Attributes

excluded_uris[RW]

A list of URLs to be excluded. Corresponds to the JSON property ‘excludedUris` @return [Array<String>]

targeted_uris[RW]

A list of URLs to be included. Corresponds to the JSON property ‘targetedUris` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb, line 2215
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb, line 2220
def update!(**args)
  @excluded_uris = args[:excluded_uris] if args.key?(:excluded_uris)
  @targeted_uris = args[:targeted_uris] if args.key?(:targeted_uris)
end