Class: Google::Apis::DisplayvideoV1::GeoRegionAssignedTargetingOptionDetails
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV1::GeoRegionAssignedTargetingOptionDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v1/classes.rb,
lib/google/apis/displayvideo_v1/representations.rb,
lib/google/apis/displayvideo_v1/representations.rb
Overview
Details for assigned geographic region targeting option. This will be
populated in the details field of an AssignedTargetingOption when
targeting_type is TARGETING_TYPE_GEO_REGION.
Instance Attribute Summary collapse
-
#display_name ⇒ String
Output only.
-
#geo_region_type ⇒ String
Output only.
-
#negative ⇒ Boolean
(also: #negative?)
Indicates if this option is being negatively targeted.
-
#targeting_option_id ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GeoRegionAssignedTargetingOptionDetails
constructor
A new instance of GeoRegionAssignedTargetingOptionDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GeoRegionAssignedTargetingOptionDetails
Returns a new instance of GeoRegionAssignedTargetingOptionDetails.
5436 5437 5438 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5436 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Output only. The display name of the geographic region (e.g., "Ontario, Canada"
).
Corresponds to the JSON property displayName
5417 5418 5419 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5417 def display_name @display_name end |
#geo_region_type ⇒ String
Output only. The type of geographic region targeting.
Corresponds to the JSON property geoRegionType
5422 5423 5424 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5422 def geo_region_type @geo_region_type end |
#negative ⇒ Boolean Also known as: negative?
Indicates if this option is being negatively targeted.
Corresponds to the JSON property negative
5427 5428 5429 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5427 def negative @negative end |
#targeting_option_id ⇒ String
Required. The targeting_option_id of a TargetingOption of type
TARGETING_TYPE_GEO_REGION.
Corresponds to the JSON property targetingOptionId
5434 5435 5436 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5434 def targeting_option_id @targeting_option_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5441 5442 5443 5444 5445 5446 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5441 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) @negative = args[:negative] if args.key?(:negative) @targeting_option_id = args[:targeting_option_id] if args.key?(:targeting_option_id) end |