Class: Google::Apis::DisplayvideoV3::RegionalLocationListAssignedTargetingOptionDetails
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV3::RegionalLocationListAssignedTargetingOptionDetails
- 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
Targeting details for regional location list. This will be populated in the
details field of an AssignedTargetingOption when targeting_type is
TARGETING_TYPE_REGIONAL_LOCATION_LIST
.
Instance Attribute Summary collapse
-
#negative ⇒ Boolean
(also: #negative?)
Indicates if this option is being negatively targeted.
-
#regional_location_list_id ⇒ Fixnum
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RegionalLocationListAssignedTargetingOptionDetails
constructor
A new instance of RegionalLocationListAssignedTargetingOptionDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RegionalLocationListAssignedTargetingOptionDetails
Returns a new instance of RegionalLocationListAssignedTargetingOptionDetails.
11080 11081 11082 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 11080 def initialize(**args) update!(**args) end |
Instance Attribute Details
#negative ⇒ Boolean Also known as: negative?
Indicates if this option is being negatively targeted.
Corresponds to the JSON property negative
11070 11071 11072 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 11070 def negative @negative end |
#regional_location_list_id ⇒ Fixnum
Required. ID of the regional location list. Should refer to the
location_list_id field of a LocationList resource whose type is
TARGETING_LOCATION_TYPE_REGIONAL
.
Corresponds to the JSON property regionalLocationListId
11078 11079 11080 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 11078 def regional_location_list_id @regional_location_list_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11085 11086 11087 11088 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 11085 def update!(**args) @negative = args[:negative] if args.key?(:negative) @regional_location_list_id = args[:regional_location_list_id] if args.key?(:regional_location_list_id) end |