distance_view.proto 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. // Copyright 2021 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.v8.resources;
  16. import "google/ads/googleads/v8/enums/distance_bucket.proto";
  17. import "google/api/field_behavior.proto";
  18. import "google/api/resource.proto";
  19. import "google/api/annotations.proto";
  20. option csharp_namespace = "Google.Ads.GoogleAds.V8.Resources";
  21. option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v8/resources;resources";
  22. option java_multiple_files = true;
  23. option java_outer_classname = "DistanceViewProto";
  24. option java_package = "com.google.ads.googleads.v8.resources";
  25. option objc_class_prefix = "GAA";
  26. option php_namespace = "Google\\Ads\\GoogleAds\\V8\\Resources";
  27. option ruby_package = "Google::Ads::GoogleAds::V8::Resources";
  28. // Proto file describing the DistanceView resource.
  29. // A distance view with metrics aggregated by the user's distance from an
  30. // advertiser's location extensions. Each DistanceBucket includes all
  31. // impressions that fall within its distance and a single impression will
  32. // contribute to the metrics for all DistanceBuckets that include the user's
  33. // distance.
  34. message DistanceView {
  35. option (google.api.resource) = {
  36. type: "googleads.googleapis.com/DistanceView"
  37. pattern: "customers/{customer_id}/distanceViews/{placeholder_chain_id}~{distance_bucket}"
  38. };
  39. // Output only. The resource name of the distance view.
  40. // Distance view resource names have the form:
  41. //
  42. // `customers/{customer_id}/distanceViews/1~{distance_bucket}`
  43. string resource_name = 1 [
  44. (google.api.field_behavior) = OUTPUT_ONLY,
  45. (google.api.resource_reference) = {
  46. type: "googleads.googleapis.com/DistanceView"
  47. }
  48. ];
  49. // Output only. Grouping of user distance from location extensions.
  50. google.ads.googleads.v8.enums.DistanceBucketEnum.DistanceBucket distance_bucket = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  51. // Output only. True if the DistanceBucket is using the metric system, false otherwise.
  52. optional bool metric_system = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
  53. }