class Google::Apis::DisplayvideoV1::GeoRegionTargetingOptionDetails
Represents a targetable geographic region. This will be populated in the geo_region_details field when targeting_type is `TARGETING_TYPE_GEO_REGION`.
Attributes
display_name[RW]
Output only. The display name of the geographic region (e.g., “Ontario, Canada” ). Corresponds to the JSON property `displayName` @return [String]
geo_region_type[RW]
Output only. The type of geographic region targeting. 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 4816 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 4821 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @geo_region_type = args[:geo_region_type] if args.key?(:geo_region_type) end