Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / google-proto-files / google / ads / googleads / v1 / enums / brand_safety_suitability.proto
1 // Copyright 2019 Google LLC.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //     http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 //
15
16 syntax = "proto3";
17
18 package google.ads.googleads.v1.enums;
19
20 import "google/api/annotations.proto";
21
22 option csharp_namespace = "Google.Ads.GoogleAds.V1.Enums";
23 option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v1/enums;enums";
24 option java_multiple_files = true;
25 option java_outer_classname = "BrandSafetySuitabilityProto";
26 option java_package = "com.google.ads.googleads.v1.enums";
27 option objc_class_prefix = "GAA";
28 option php_namespace = "Google\\Ads\\GoogleAds\\V1\\Enums";
29 option ruby_package = "Google::Ads::GoogleAds::V1::Enums";
30 // Proto file describing brand safety suitability settings.
31
32 // Container for enum with 3-Tier brand safety suitability control.
33 message BrandSafetySuitabilityEnum {
34   // 3-Tier brand safety suitability control.
35   enum BrandSafetySuitability {
36     // Not specified.
37     UNSPECIFIED = 0;
38
39     // Used for return value only. Represents value unknown in this version.
40     UNKNOWN = 1;
41
42     // This option lets you show ads across all inventory on YouTube and video
43     // partners that meet our standards for monetization. This option may be an
44     // appropriate choice for brands that want maximum access to the full
45     // breadth of videos eligible for ads, including, for example, videos that
46     // have strong profanity in the context of comedy or a documentary, or
47     // excessive violence as featured in video games.
48     EXPANDED_INVENTORY = 2;
49
50     // This option lets you show ads across a wide range of content that's
51     // appropriate for most brands, such as popular music videos, documentaries,
52     // and movie trailers. The content you can show ads on is based on YouTube's
53     // advertiser-friendly content guidelines that take into account, for
54     // example, the strength or frequency of profanity, or the appropriateness
55     // of subject matter like sensitive events. Ads won't show, for example, on
56     // content with repeated strong profanity, strong sexual content, or graphic
57     // violence.
58     STANDARD_INVENTORY = 3;
59
60     // This option lets you show ads on a reduced range of content that's
61     // appropriate for brands with particularly strict guidelines around
62     // inappropriate language and sexual suggestiveness; above and beyond what
63     // YouTube's advertiser-friendly content guidelines address. The videos
64     // accessible in this sensitive category meet heightened requirements,
65     // especially for inappropriate language and sexual suggestiveness. For
66     // example, your ads will be excluded from showing on some of YouTube's most
67     // popular music videos and other pop culture content across YouTube and
68     // Google video partners.
69     LIMITED_INVENTORY = 4;
70   }
71
72
73 }