123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- // Copyright 2022 Google LLC
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- syntax = "proto3";
- package google.ads.googleads.v12.enums;
- option csharp_namespace = "Google.Ads.GoogleAds.V12.Enums";
- option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v12/enums;enums";
- option java_multiple_files = true;
- option java_outer_classname = "CampaignPrimaryStatusReasonProto";
- option java_package = "com.google.ads.googleads.v12.enums";
- option objc_class_prefix = "GAA";
- option php_namespace = "Google\\Ads\\GoogleAds\\V12\\Enums";
- option ruby_package = "Google::Ads::GoogleAds::V12::Enums";
- // Proto file describing CampaignPrimaryStatusReasons.
- // Container for enum describing possible campaign primary status reasons.
- message CampaignPrimaryStatusReasonEnum {
- // Enum describing the possible campaign primary status reasons. Provides
- // insight into why a campaign is not serving or not serving optimally. These
- // reasons are aggregated to determine an overall campaign primary status.
- enum CampaignPrimaryStatusReason {
- // Not specified.
- UNSPECIFIED = 0;
- // Used for return value only. Represents value unknown in this version.
- UNKNOWN = 1;
- // The user-specified campaign status is removed.
- CAMPAIGN_REMOVED = 2;
- // The user-specified campaign status is paused.
- CAMPAIGN_PAUSED = 3;
- // The user-specified time for this campaign to start is in the future.
- CAMPAIGN_PENDING = 4;
- // The user-specified time for this campaign to end has passed.
- CAMPAIGN_ENDED = 5;
- // The campaign is a draft.
- CAMPAIGN_DRAFT = 6;
- // The bidding strategy has incorrect user-specified settings.
- BIDDING_STRATEGY_MISCONFIGURED = 7;
- // The bidding strategy is limited by user-specified settings such as lack
- // of data or similar.
- BIDDING_STRATEGY_LIMITED = 8;
- // The automated bidding system is adjusting to user-specified changes to
- // the bidding strategy.
- BIDDING_STRATEGY_LEARNING = 9;
- // Campaign could capture more conversion value by adjusting CPA/ROAS
- // targets.
- BIDDING_STRATEGY_CONSTRAINED = 10;
- // The budget is limiting the campaign's ability to serve.
- BUDGET_CONSTRAINED = 11;
- // The budget has incorrect user-specified settings.
- BUDGET_MISCONFIGURED = 12;
- // Campaign is not targeting all relevant queries.
- SEARCH_VOLUME_LIMITED = 13;
- // The user-specified ad group statuses are all paused.
- AD_GROUPS_PAUSED = 14;
- // No eligible ad groups exist in this campaign.
- NO_AD_GROUPS = 15;
- // The user-specified keyword statuses are all paused.
- KEYWORDS_PAUSED = 16;
- // No eligible keywords exist in this campaign.
- NO_KEYWORDS = 17;
- // The user-specified ad group ad statuses are all paused.
- AD_GROUP_ADS_PAUSED = 18;
- // No eligible ad group ads exist in this campaign.
- NO_AD_GROUP_ADS = 19;
- // At least one ad in this campaign is limited by policy.
- HAS_ADS_LIMITED_BY_POLICY = 20;
- // At least one ad in this campaign is disapproved.
- HAS_ADS_DISAPPROVED = 21;
- // Most ads in this campaign are pending review.
- MOST_ADS_UNDER_REVIEW = 22;
- // The campaign has a lead form goal, and the lead form extension is
- // missing.
- MISSING_LEAD_FORM_EXTENSION = 23;
- // The campaign has a call goal, and the call extension is missing.
- MISSING_CALL_EXTENSION = 24;
- // The lead form extension is under review.
- LEAD_FORM_EXTENSION_UNDER_REVIEW = 25;
- // The lead extension is disapproved.
- LEAD_FORM_EXTENSION_DISAPPROVED = 26;
- // The call extension is under review.
- CALL_EXTENSION_UNDER_REVIEW = 27;
- // The call extension is disapproved.
- CALL_EXTENSION_DISAPPROVED = 28;
- // No eligible mobile application ad group criteria exist in this campaign.
- NO_MOBILE_APPLICATION_AD_GROUP_CRITERIA = 29;
- // The user-specified campaign group status is paused.
- CAMPAIGN_GROUP_PAUSED = 30;
- // The user-specified times of all group budgets associated with the parent
- // campaign group has passed.
- CAMPAIGN_GROUP_ALL_GROUP_BUDGETS_ENDED = 31;
- // The app associated with this ACi campaign is not released in the target
- // countries of the campaign.
- APP_NOT_RELEASED = 32;
- // The app associated with this ACi campaign is partially released in the
- // target countries of the campaign.
- APP_PARTIALLY_RELEASED = 33;
- }
- }
|