Class: Google::Apis::DisplayvideoV3::DoubleVerifyBrandSafetyCategories
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV3::DoubleVerifyBrandSafetyCategories
- 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
Settings for brand safety controls.
Instance Attribute Summary collapse
-
#avoid_unknown_brand_safety_category ⇒ Boolean
(also: #avoid_unknown_brand_safety_category?)
Unknown or unrateable.
-
#avoided_high_severity_categories ⇒ Array<String>
Brand safety high severity avoidance categories.
-
#avoided_medium_severity_categories ⇒ Array<String>
Brand safety medium severity avoidance categories.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DoubleVerifyBrandSafetyCategories
constructor
A new instance of DoubleVerifyBrandSafetyCategories.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DoubleVerifyBrandSafetyCategories
Returns a new instance of DoubleVerifyBrandSafetyCategories.
5475 5476 5477 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 5475 def initialize(**args) update!(**args) end |
Instance Attribute Details
#avoid_unknown_brand_safety_category ⇒ Boolean Also known as: avoid_unknown_brand_safety_category?
Unknown or unrateable.
Corresponds to the JSON property avoidUnknownBrandSafetyCategory
5462 5463 5464 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 5462 def avoid_unknown_brand_safety_category @avoid_unknown_brand_safety_category end |
#avoided_high_severity_categories ⇒ Array<String>
Brand safety high severity avoidance categories.
Corresponds to the JSON property avoidedHighSeverityCategories
5468 5469 5470 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 5468 def avoided_high_severity_categories @avoided_high_severity_categories end |
#avoided_medium_severity_categories ⇒ Array<String>
Brand safety medium severity avoidance categories.
Corresponds to the JSON property avoidedMediumSeverityCategories
5473 5474 5475 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 5473 def avoided_medium_severity_categories @avoided_medium_severity_categories end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5480 5481 5482 5483 5484 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 5480 def update!(**args) @avoid_unknown_brand_safety_category = args[:avoid_unknown_brand_safety_category] if args.key?(:avoid_unknown_brand_safety_category) @avoided_high_severity_categories = args[:avoided_high_severity_categories] if args.key?(:avoided_high_severity_categories) @avoided_medium_severity_categories = args[:avoided_medium_severity_categories] if args.key?(:avoided_medium_severity_categories) end |