campaign_primary_status_reason.proto 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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 = "CampaignPrimaryStatusReasonProto";
  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 CampaignPrimaryStatusReasons.
  25. // Container for enum describing possible campaign primary status reasons.
  26. message CampaignPrimaryStatusReasonEnum {
  27. // Enum describing the possible campaign primary status reasons. Provides
  28. // insight into why a campaign is not serving or not serving optimally. These
  29. // reasons are aggregated to determine an overall campaign primary status.
  30. enum CampaignPrimaryStatusReason {
  31. // Not specified.
  32. UNSPECIFIED = 0;
  33. // Used for return value only. Represents value unknown in this version.
  34. UNKNOWN = 1;
  35. // The user-specified campaign status is removed.
  36. CAMPAIGN_REMOVED = 2;
  37. // The user-specified campaign status is paused.
  38. CAMPAIGN_PAUSED = 3;
  39. // The user-specified time for this campaign to start is in the future.
  40. CAMPAIGN_PENDING = 4;
  41. // The user-specified time for this campaign to end has passed.
  42. CAMPAIGN_ENDED = 5;
  43. // The campaign is a draft.
  44. CAMPAIGN_DRAFT = 6;
  45. // The bidding strategy has incorrect user-specified settings.
  46. BIDDING_STRATEGY_MISCONFIGURED = 7;
  47. // The bidding strategy is limited by user-specified settings such as lack
  48. // of data or similar.
  49. BIDDING_STRATEGY_LIMITED = 8;
  50. // The automated bidding system is adjusting to user-specified changes to
  51. // the bidding strategy.
  52. BIDDING_STRATEGY_LEARNING = 9;
  53. // Campaign could capture more conversion value by adjusting CPA/ROAS
  54. // targets.
  55. BIDDING_STRATEGY_CONSTRAINED = 10;
  56. // The budget is limiting the campaign's ability to serve.
  57. BUDGET_CONSTRAINED = 11;
  58. // The budget has incorrect user-specified settings.
  59. BUDGET_MISCONFIGURED = 12;
  60. // Campaign is not targeting all relevant queries.
  61. SEARCH_VOLUME_LIMITED = 13;
  62. // The user-specified ad group statuses are all paused.
  63. AD_GROUPS_PAUSED = 14;
  64. // No eligible ad groups exist in this campaign.
  65. NO_AD_GROUPS = 15;
  66. // The user-specified keyword statuses are all paused.
  67. KEYWORDS_PAUSED = 16;
  68. // No eligible keywords exist in this campaign.
  69. NO_KEYWORDS = 17;
  70. // The user-specified ad group ad statuses are all paused.
  71. AD_GROUP_ADS_PAUSED = 18;
  72. // No eligible ad group ads exist in this campaign.
  73. NO_AD_GROUP_ADS = 19;
  74. // At least one ad in this campaign is limited by policy.
  75. HAS_ADS_LIMITED_BY_POLICY = 20;
  76. // At least one ad in this campaign is disapproved.
  77. HAS_ADS_DISAPPROVED = 21;
  78. // Most ads in this campaign are pending review.
  79. MOST_ADS_UNDER_REVIEW = 22;
  80. // The campaign has a lead form goal, and the lead form extension is
  81. // missing.
  82. MISSING_LEAD_FORM_EXTENSION = 23;
  83. // The campaign has a call goal, and the call extension is missing.
  84. MISSING_CALL_EXTENSION = 24;
  85. // The lead form extension is under review.
  86. LEAD_FORM_EXTENSION_UNDER_REVIEW = 25;
  87. // The lead extension is disapproved.
  88. LEAD_FORM_EXTENSION_DISAPPROVED = 26;
  89. // The call extension is under review.
  90. CALL_EXTENSION_UNDER_REVIEW = 27;
  91. // The call extension is disapproved.
  92. CALL_EXTENSION_DISAPPROVED = 28;
  93. // No eligible mobile application ad group criteria exist in this campaign.
  94. NO_MOBILE_APPLICATION_AD_GROUP_CRITERIA = 29;
  95. // The user-specified campaign group status is paused.
  96. CAMPAIGN_GROUP_PAUSED = 30;
  97. // The user-specified times of all group budgets associated with the parent
  98. // campaign group has passed.
  99. CAMPAIGN_GROUP_ALL_GROUP_BUDGETS_ENDED = 31;
  100. // The app associated with this ACi campaign is not released in the target
  101. // countries of the campaign.
  102. APP_NOT_RELEASED = 32;
  103. // The app associated with this ACi campaign is partially released in the
  104. // target countries of the campaign.
  105. APP_PARTIALLY_RELEASED = 33;
  106. }
  107. }