class Google::Apis::DisplayvideoV1::UrlAssignedTargetingOptionDetails

Details for assigned URL targeting option. This will be populated in the details field of an AssignedTargetingOption when targeting_type is ` TARGETING_TYPE_URL`.

Attributes

negative[RW]

Indicates if this option is being negatively targeted. Corresponds to the JSON property `negative` @return [Boolean]

negative?[RW]

Indicates if this option is being negatively targeted. Corresponds to the JSON property `negative` @return [Boolean]

url[RW]

Required. The URL, for example `example.com`. DV360 supports two levels of subdirectory targeting, for example `www.example.com/one-subdirectory-level/ second-level`, and five levels of subdomain targeting, for example `five.four. three.two.one.example.com`. Corresponds to the JSON property `url` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/displayvideo_v1/classes.rb, line 9488
def update!(**args)
  @negative = args[:negative] if args.key?(:negative)
  @url = args[:url] if args.key?(:url)
end