Class: Google::Apis::DisplayvideoV3::BusinessChainSearchTerms
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV3::BusinessChainSearchTerms
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v3/classes.rb,
lib/google/apis/displayvideo_v3/representations.rb,
lib/google/apis/displayvideo_v3/representations.rb
Overview
Search terms for Business Chain targeting options. At least one of the field should be populated.
Instance Attribute Summary collapse
-
#business_chain_query ⇒ String
The search query for the desired business chain.
-
#region_query ⇒ String
The search query for the desired geo region, e.g.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BusinessChainSearchTerms
constructor
A new instance of BusinessChainSearchTerms.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BusinessChainSearchTerms
Returns a new instance of BusinessChainSearchTerms.
3004 3005 3006 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3004 def initialize(**args) update!(**args) end |
Instance Attribute Details
#business_chain_query ⇒ String
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
2997 2998 2999 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 2997 def business_chain_query @business_chain_query end |
#region_query ⇒ String
The search query for the desired geo region, e.g. "Seattle", "United State".
Corresponds to the JSON property regionQuery
3002 3003 3004 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3002 def region_query @region_query end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3009 3010 3011 3012 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3009 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 |