Class: Google::Apis::DisplayvideoV2::DoubleVerifyBrandSafetyCategories
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV2::DoubleVerifyBrandSafetyCategories
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v2/classes.rb,
lib/google/apis/displayvideo_v2/representations.rb,
lib/google/apis/displayvideo_v2/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.
4899 4900 4901 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 4899 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
4886 4887 4888 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 4886 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
4892 4893 4894 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 4892 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
4897 4898 4899 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 4897 def avoided_medium_severity_categories @avoided_medium_severity_categories end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4904 4905 4906 4907 4908 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 4904 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 |