class Google::Apis::DisplayvideoV1::BusinessChainSearchTerms

Search terms for Business Chain targeting options. At least one of the field should be populated.

Attributes

business_chain_query[RW]

The search query for the desired business chain. The query must be the full name of the business, e.g. “KFC”, “mercedes-benz”. Corresponds to the JSON property `businessChainQuery` @return [String]

region_query[RW]

The search query for the desired geo region, e.g. “Seattle”, “United State”. Corresponds to the JSON property `regionQuery` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/displayvideo_v1/classes.rb, line 2037
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 2042
def update!(**args)
  @business_chain_query = args[:business_chain_query] if args.key?(:business_chain_query)
  @region_query = args[:region_query] if args.key?(:region_query)
end