ad_group_criterion_engine_status.proto 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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.searchads360.v0.enums;
  16. option csharp_namespace = "Google.Ads.SearchAds360.V0.Enums";
  17. option go_package = "google.golang.org/genproto/googleapis/ads/searchads360/v0/enums;enums";
  18. option java_multiple_files = true;
  19. option java_outer_classname = "AdGroupCriterionEngineStatusProto";
  20. option java_package = "com.google.ads.searchads360.v0.enums";
  21. option objc_class_prefix = "GASA360";
  22. option php_namespace = "Google\\Ads\\SearchAds360\\V0\\Enums";
  23. option ruby_package = "Google::Ads::SearchAds360::V0::Enums";
  24. // Proto file describing engine status for the ad_group_criterion.
  25. // Container for enum describing possible AdGroupCriterion engine statuses.
  26. message AdGroupCriterionEngineStatusEnum {
  27. // Enumerates AdGroupCriterion engine statuses.
  28. enum AdGroupCriterionEngineStatus {
  29. // Not specified.
  30. UNSPECIFIED = 0;
  31. // Used for return value only. Represents value unknown in this version.
  32. UNKNOWN = 1;
  33. // Deprecated. Do not use.
  34. AD_GROUP_CRITERION_ELIGIBLE = 2 [deprecated = true];
  35. // Baidu: Bid or quality too low to be displayed.
  36. AD_GROUP_CRITERION_INAPPROPRIATE_FOR_CAMPAIGN = 3;
  37. // Baidu: Bid or quality too low for mobile, but eligible to display for
  38. // desktop.
  39. AD_GROUP_CRITERION_INVALID_MOBILE_SEARCH = 4;
  40. // Baidu: Bid or quality too low for desktop, but eligible to display for
  41. // mobile.
  42. AD_GROUP_CRITERION_INVALID_PC_SEARCH = 5;
  43. // Baidu: Bid or quality too low to be displayed.
  44. AD_GROUP_CRITERION_INVALID_SEARCH = 6;
  45. // Baidu: Paused by Baidu due to low search volume.
  46. AD_GROUP_CRITERION_LOW_SEARCH_VOLUME = 7;
  47. // Baidu: Mobile URL in process to be reviewed.
  48. AD_GROUP_CRITERION_MOBILE_URL_UNDER_REVIEW = 8;
  49. // Baidu: The landing page for one device is invalid, while the landing
  50. // page for the other device is valid.
  51. AD_GROUP_CRITERION_PARTIALLY_INVALID = 9;
  52. // Baidu: Keyword has been created and paused by Baidu account management,
  53. // and is now ready for you to activate it.
  54. AD_GROUP_CRITERION_TO_BE_ACTIVATED = 10;
  55. // Baidu: In process to be reviewed by Baidu. Gemini: Criterion under
  56. // review.
  57. AD_GROUP_CRITERION_UNDER_REVIEW = 11;
  58. // Baidu: Criterion to be reviewed.
  59. AD_GROUP_CRITERION_NOT_REVIEWED = 12;
  60. // Deprecated. Do not use. Previously used by Gemini
  61. AD_GROUP_CRITERION_ON_HOLD = 13 [deprecated = true];
  62. // Y!J : Criterion pending review
  63. AD_GROUP_CRITERION_PENDING_REVIEW = 14;
  64. // Criterion has been paused.
  65. AD_GROUP_CRITERION_PAUSED = 15;
  66. // Criterion has been removed.
  67. AD_GROUP_CRITERION_REMOVED = 16;
  68. // Criterion has been approved.
  69. AD_GROUP_CRITERION_APPROVED = 17;
  70. // Criterion has been disapproved.
  71. AD_GROUP_CRITERION_DISAPPROVED = 18;
  72. // Criterion is active and serving.
  73. AD_GROUP_CRITERION_SERVING = 19;
  74. // Criterion has been paused since the account is paused.
  75. AD_GROUP_CRITERION_ACCOUNT_PAUSED = 20;
  76. }
  77. }