conversion_lag_bucket.proto 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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.v11.enums;
  16. option csharp_namespace = "Google.Ads.GoogleAds.V11.Enums";
  17. option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v11/enums;enums";
  18. option java_multiple_files = true;
  19. option java_outer_classname = "ConversionLagBucketProto";
  20. option java_package = "com.google.ads.googleads.v11.enums";
  21. option objc_class_prefix = "GAA";
  22. option php_namespace = "Google\\Ads\\GoogleAds\\V11\\Enums";
  23. option ruby_package = "Google::Ads::GoogleAds::V11::Enums";
  24. // Container for enum representing the number of days between impression and
  25. // conversion.
  26. message ConversionLagBucketEnum {
  27. // Enum representing the number of days between impression and conversion.
  28. enum ConversionLagBucket {
  29. // Not specified.
  30. UNSPECIFIED = 0;
  31. // Used for return value only. Represents value unknown in this version.
  32. UNKNOWN = 1;
  33. // Conversion lag bucket from 0 to 1 day. 0 day is included, 1 day is not.
  34. LESS_THAN_ONE_DAY = 2;
  35. // Conversion lag bucket from 1 to 2 days. 1 day is included, 2 days is not.
  36. ONE_TO_TWO_DAYS = 3;
  37. // Conversion lag bucket from 2 to 3 days. 2 days is included,
  38. // 3 days is not.
  39. TWO_TO_THREE_DAYS = 4;
  40. // Conversion lag bucket from 3 to 4 days. 3 days is included,
  41. // 4 days is not.
  42. THREE_TO_FOUR_DAYS = 5;
  43. // Conversion lag bucket from 4 to 5 days. 4 days is included,
  44. // 5 days is not.
  45. FOUR_TO_FIVE_DAYS = 6;
  46. // Conversion lag bucket from 5 to 6 days. 5 days is included,
  47. // 6 days is not.
  48. FIVE_TO_SIX_DAYS = 7;
  49. // Conversion lag bucket from 6 to 7 days. 6 days is included,
  50. // 7 days is not.
  51. SIX_TO_SEVEN_DAYS = 8;
  52. // Conversion lag bucket from 7 to 8 days. 7 days is included,
  53. // 8 days is not.
  54. SEVEN_TO_EIGHT_DAYS = 9;
  55. // Conversion lag bucket from 8 to 9 days. 8 days is included,
  56. // 9 days is not.
  57. EIGHT_TO_NINE_DAYS = 10;
  58. // Conversion lag bucket from 9 to 10 days. 9 days is included,
  59. // 10 days is not.
  60. NINE_TO_TEN_DAYS = 11;
  61. // Conversion lag bucket from 10 to 11 days. 10 days is included,
  62. // 11 days is not.
  63. TEN_TO_ELEVEN_DAYS = 12;
  64. // Conversion lag bucket from 11 to 12 days. 11 days is included,
  65. // 12 days is not.
  66. ELEVEN_TO_TWELVE_DAYS = 13;
  67. // Conversion lag bucket from 12 to 13 days. 12 days is included,
  68. // 13 days is not.
  69. TWELVE_TO_THIRTEEN_DAYS = 14;
  70. // Conversion lag bucket from 13 to 14 days. 13 days is included,
  71. // 14 days is not.
  72. THIRTEEN_TO_FOURTEEN_DAYS = 15;
  73. // Conversion lag bucket from 14 to 21 days. 14 days is included,
  74. // 21 days is not.
  75. FOURTEEN_TO_TWENTY_ONE_DAYS = 16;
  76. // Conversion lag bucket from 21 to 30 days. 21 days is included,
  77. // 30 days is not.
  78. TWENTY_ONE_TO_THIRTY_DAYS = 17;
  79. // Conversion lag bucket from 30 to 45 days. 30 days is included,
  80. // 45 days is not.
  81. THIRTY_TO_FORTY_FIVE_DAYS = 18;
  82. // Conversion lag bucket from 45 to 60 days. 45 days is included,
  83. // 60 days is not.
  84. FORTY_FIVE_TO_SIXTY_DAYS = 19;
  85. // Conversion lag bucket from 60 to 90 days. 60 days is included,
  86. // 90 days is not.
  87. SIXTY_TO_NINETY_DAYS = 20;
  88. }
  89. }