Class: Google::Apis::DisplayvideoV1::DoubleVerifyBrandSafetyCategories
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV1::DoubleVerifyBrandSafetyCategories
- 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
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.
4463 4464 4465 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 4463 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
4450 4451 4452 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 4450 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
4456 4457 4458 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 4456 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
4461 4462 4463 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 4461 def avoided_medium_severity_categories @avoided_medium_severity_categories end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4468 4469 4470 4471 4472 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 4468 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 |