class Google::Apis::DisplayvideoV1::BusinessChainTargetingOptionDetails

Represents a targetable business chain within a geo region. This will be populated in the business_chain_details field when targeting_type is ` TARGETING_TYPE_BUSINESS_CHAIN`.

Attributes

business_chain[RW]

Output only. The display name of the business chain, e.g. “KFC”, “Chase Bank”. Corresponds to the JSON property `businessChain` @return [String]

geo_region[RW]

Output only. The display name of the geographic region, e.g. “Ontario, Canada”. Corresponds to the JSON property `geoRegion` @return [String]

geo_region_type[RW]

Output only. The type of the geographic region. Corresponds to the JSON property `geoRegionType` @return [String]

Public Class Methods

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