reach_plan_age_range.proto 3.0 KB

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