campaign_primary_status.proto 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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 = "CampaignPrimaryStatusProto";
  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 Campaign primary statuses.
  25. // Container for enum describing possible campaign primary status.
  26. message CampaignPrimaryStatusEnum {
  27. // Enum describing the possible campaign primary status. Provides insight into
  28. // why a campaign is not serving or not serving optimally. Modification to the
  29. // campaign and its related entities might take a while to be reflected in
  30. // this status.
  31. enum CampaignPrimaryStatus {
  32. // Not specified.
  33. UNSPECIFIED = 0;
  34. // Used for return value only. Represents value unknown in this version.
  35. UNKNOWN = 1;
  36. // The campaign is eligible to serve.
  37. ELIGIBLE = 2;
  38. // The user-specified campaign status is paused.
  39. PAUSED = 3;
  40. // The user-specified campaign status is removed.
  41. REMOVED = 4;
  42. // The user-specified time for this campaign to end has passed.
  43. ENDED = 5;
  44. // The campaign may serve in the future.
  45. PENDING = 6;
  46. // The campaign or its associated entities have incorrect user-specified
  47. // settings.
  48. MISCONFIGURED = 7;
  49. // The campaign or its associated entities are limited by user-specified
  50. // settings.
  51. LIMITED = 8;
  52. // The automated bidding system is adjusting to user-specified changes to
  53. // the campaign or associated entities.
  54. LEARNING = 9;
  55. // The campaign is not eligible to serve.
  56. NOT_ELIGIBLE = 10;
  57. }
  58. }