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.
5579 5580 5581 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 5579 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
5566 5567 5568 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 5566 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
5572 5573 5574 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 5572 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
5577 5578 5579 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 5577 def avoided_medium_severity_categories @avoided_medium_severity_categories end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5584 5585 5586 5587 5588 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 5584 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 |