• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2023 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
15syntax = "proto3";
16
17package google.ads.googleads.v16.enums;
18
19option csharp_namespace = "Google.Ads.GoogleAds.V16.Enums";
20option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v16/enums;enums";
21option java_multiple_files = true;
22option java_outer_classname = "ReachPlanAgeRangeProto";
23option java_package = "com.google.ads.googleads.v16.enums";
24option objc_class_prefix = "GAA";
25option php_namespace = "Google\\Ads\\GoogleAds\\V16\\Enums";
26option ruby_package = "Google::Ads::GoogleAds::V16::Enums";
27
28// Proto file describing a plannable age range.
29
30// Message describing plannable age ranges.
31message ReachPlanAgeRangeEnum {
32  // Possible plannable age range values.
33  enum ReachPlanAgeRange {
34    // Not specified.
35    UNSPECIFIED = 0;
36
37    // The value is unknown in this version.
38    UNKNOWN = 1;
39
40    // Between 18 and 24 years old.
41    AGE_RANGE_18_24 = 503001;
42
43    // Between 18 and 34 years old.
44    AGE_RANGE_18_34 = 2;
45
46    // Between 18 and 44 years old.
47    AGE_RANGE_18_44 = 3;
48
49    // Between 18 and 49 years old.
50    AGE_RANGE_18_49 = 4;
51
52    // Between 18 and 54 years old.
53    AGE_RANGE_18_54 = 5;
54
55    // Between 18 and 64 years old.
56    AGE_RANGE_18_64 = 6;
57
58    // Between 18 and 65+ years old.
59    AGE_RANGE_18_65_UP = 7;
60
61    // Between 21 and 34 years old.
62    AGE_RANGE_21_34 = 8;
63
64    // Between 25 and 34 years old.
65    AGE_RANGE_25_34 = 503002;
66
67    // Between 25 and 44 years old.
68    AGE_RANGE_25_44 = 9;
69
70    // Between 25 and 49 years old.
71    AGE_RANGE_25_49 = 10;
72
73    // Between 25 and 54 years old.
74    AGE_RANGE_25_54 = 11;
75
76    // Between 25 and 64 years old.
77    AGE_RANGE_25_64 = 12;
78
79    // Between 25 and 65+ years old.
80    AGE_RANGE_25_65_UP = 13;
81
82    // Between 35 and 44 years old.
83    AGE_RANGE_35_44 = 503003;
84
85    // Between 35 and 49 years old.
86    AGE_RANGE_35_49 = 14;
87
88    // Between 35 and 54 years old.
89    AGE_RANGE_35_54 = 15;
90
91    // Between 35 and 64 years old.
92    AGE_RANGE_35_64 = 16;
93
94    // Between 35 and 65+ years old.
95    AGE_RANGE_35_65_UP = 17;
96
97    // Between 45 and 54 years old.
98    AGE_RANGE_45_54 = 503004;
99
100    // Between 45 and 64 years old.
101    AGE_RANGE_45_64 = 18;
102
103    // Between 45 and 65+ years old.
104    AGE_RANGE_45_65_UP = 19;
105
106    // Between 50 and 65+ years old.
107    AGE_RANGE_50_65_UP = 20;
108
109    // Between 55 and 64 years old.
110    AGE_RANGE_55_64 = 503005;
111
112    // Between 55 and 65+ years old.
113    AGE_RANGE_55_65_UP = 21;
114
115    // 65 years old and beyond.
116    AGE_RANGE_65_UP = 503006;
117  }
118}
119