audience_insights_dimension.proto 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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.v12.enums;
  16. option csharp_namespace = "Google.Ads.GoogleAds.V12.Enums";
  17. option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v12/enums;enums";
  18. option java_multiple_files = true;
  19. option java_outer_classname = "AudienceInsightsDimensionProto";
  20. option java_package = "com.google.ads.googleads.v12.enums";
  21. option objc_class_prefix = "GAA";
  22. option php_namespace = "Google\\Ads\\GoogleAds\\V12\\Enums";
  23. option ruby_package = "Google::Ads::GoogleAds::V12::Enums";
  24. // Proto file describing a plannable network.
  25. // Container for enum describing audience insights dimensions.
  26. message AudienceInsightsDimensionEnum {
  27. // Possible audience dimensions for use in generating insights.
  28. enum AudienceInsightsDimension {
  29. // Not specified.
  30. UNSPECIFIED = 0;
  31. // The value is unknown in this version.
  32. UNKNOWN = 1;
  33. // A Product & Service category.
  34. CATEGORY = 2;
  35. // A Knowledge Graph entity.
  36. KNOWLEDGE_GRAPH = 3;
  37. // A country, represented by a geo target.
  38. GEO_TARGET_COUNTRY = 4;
  39. // A geographic location within a country.
  40. SUB_COUNTRY_LOCATION = 5;
  41. // A YouTube channel.
  42. YOUTUBE_CHANNEL = 6;
  43. // A YouTube Dynamic Lineup.
  44. YOUTUBE_DYNAMIC_LINEUP = 7;
  45. // An Affinity UserInterest.
  46. AFFINITY_USER_INTEREST = 8;
  47. // An In-Market UserInterest.
  48. IN_MARKET_USER_INTEREST = 9;
  49. // A Parental Status value (parent, or not a parent).
  50. PARENTAL_STATUS = 10;
  51. // A household income percentile range.
  52. INCOME_RANGE = 11;
  53. // An age range.
  54. AGE_RANGE = 12;
  55. // A gender.
  56. GENDER = 13;
  57. }
  58. }