segments.proto 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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.common;
  16. import "google/ads/searchads360/v0/enums/conversion_action_category.proto";
  17. import "google/ads/searchads360/v0/enums/day_of_week.proto";
  18. import "google/ads/searchads360/v0/enums/device.proto";
  19. import "google/api/resource.proto";
  20. option csharp_namespace = "Google.Ads.SearchAds360.V0.Common";
  21. option go_package = "google.golang.org/genproto/googleapis/ads/searchads360/v0/common;common";
  22. option java_multiple_files = true;
  23. option java_outer_classname = "SegmentsProto";
  24. option java_package = "com.google.ads.searchads360.v0.common";
  25. option objc_class_prefix = "GASA360";
  26. option php_namespace = "Google\\Ads\\SearchAds360\\V0\\Common";
  27. option ruby_package = "Google::Ads::SearchAds360::V0::Common";
  28. // Proto file describing segment only fields.
  29. // Segment only fields.
  30. message Segments {
  31. // Resource name of the conversion action.
  32. optional string conversion_action = 146 [(google.api.resource_reference) = {
  33. type: "searchads360.googleapis.com/ConversionAction"
  34. }];
  35. // Conversion action category.
  36. google.ads.searchads360.v0.enums.ConversionActionCategoryEnum.ConversionActionCategory conversion_action_category = 53;
  37. // Conversion action name.
  38. optional string conversion_action_name = 114;
  39. // Date to which metrics apply.
  40. // yyyy-MM-dd format, for example, 2018-04-17.
  41. optional string date = 79;
  42. // Day of the week, for example, MONDAY.
  43. google.ads.searchads360.v0.enums.DayOfWeekEnum.DayOfWeek day_of_week = 5;
  44. // Device to which metrics apply.
  45. google.ads.searchads360.v0.enums.DeviceEnum.Device device = 1;
  46. // Month as represented by the date of the first day of a month. Formatted as
  47. // yyyy-MM-dd.
  48. optional string month = 90;
  49. // Quarter as represented by the date of the first day of a quarter.
  50. // Uses the calendar year for quarters, for example, the second quarter of
  51. // 2018 starts on 2018-04-01. Formatted as yyyy-MM-dd.
  52. optional string quarter = 128;
  53. // Week as defined as Monday through Sunday, and represented by the date of
  54. // Monday. Formatted as yyyy-MM-dd.
  55. optional string week = 130;
  56. // Year, formatted as yyyy.
  57. optional int32 year = 131;
  58. }