conversion_action.proto 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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.resources;
  16. import "google/ads/searchads360/v0/enums/attribution_model.proto";
  17. import "google/ads/searchads360/v0/enums/conversion_action_category.proto";
  18. import "google/ads/searchads360/v0/enums/conversion_action_status.proto";
  19. import "google/ads/searchads360/v0/enums/conversion_action_type.proto";
  20. import "google/ads/searchads360/v0/enums/data_driven_model_status.proto";
  21. import "google/api/field_behavior.proto";
  22. import "google/api/resource.proto";
  23. option csharp_namespace = "Google.Ads.SearchAds360.V0.Resources";
  24. option go_package = "google.golang.org/genproto/googleapis/ads/searchads360/v0/resources;resources";
  25. option java_multiple_files = true;
  26. option java_outer_classname = "ConversionActionProto";
  27. option java_package = "com.google.ads.searchads360.v0.resources";
  28. option objc_class_prefix = "GASA360";
  29. option php_namespace = "Google\\Ads\\SearchAds360\\V0\\Resources";
  30. option ruby_package = "Google::Ads::SearchAds360::V0::Resources";
  31. // Proto file describing the Conversion Action resource.
  32. // A conversion action.
  33. message ConversionAction {
  34. option (google.api.resource) = {
  35. type: "searchads360.googleapis.com/ConversionAction"
  36. pattern: "customers/{customer_id}/conversionActions/{conversion_type_id}"
  37. };
  38. // Settings related to this conversion action's attribution model.
  39. message AttributionModelSettings {
  40. // The attribution model type of this conversion action.
  41. google.ads.searchads360.v0.enums.AttributionModelEnum.AttributionModel attribution_model = 1;
  42. // Output only. The status of the data-driven attribution model for the conversion
  43. // action.
  44. google.ads.searchads360.v0.enums.DataDrivenModelStatusEnum.DataDrivenModelStatus data_driven_model_status = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  45. }
  46. // Settings related to the value for conversion events associated with this
  47. // conversion action.
  48. message ValueSettings {
  49. // The value to use when conversion events for this conversion action are
  50. // sent with an invalid, disallowed or missing value, or when
  51. // this conversion action is configured to always use the default value.
  52. optional double default_value = 4;
  53. // The currency code to use when conversion events for this conversion
  54. // action are sent with an invalid or missing currency code, or when this
  55. // conversion action is configured to always use the default value.
  56. optional string default_currency_code = 5;
  57. // Controls whether the default value and default currency code are used in
  58. // place of the value and currency code specified in conversion events for
  59. // this conversion action.
  60. optional bool always_use_default_value = 6;
  61. }
  62. // Settings related to a Floodlight conversion action.
  63. message FloodlightSettings {
  64. // Output only. String used to identify a Floodlight activity group when reporting
  65. // conversions.
  66. string activity_group_tag = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  67. // Output only. String used to identify a Floodlight activity when reporting conversions.
  68. string activity_tag = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  69. // Output only. ID of the Floodlight activity in DoubleClick Campaign Manager (DCM).
  70. int64 activity_id = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
  71. }
  72. // Immutable. The resource name of the conversion action.
  73. // Conversion action resource names have the form:
  74. //
  75. // `customers/{customer_id}/conversionActions/{conversion_action_id}`
  76. string resource_name = 1 [
  77. (google.api.field_behavior) = IMMUTABLE,
  78. (google.api.resource_reference) = {
  79. type: "searchads360.googleapis.com/ConversionAction"
  80. }
  81. ];
  82. // Output only. The ID of the conversion action.
  83. optional int64 id = 21 [(google.api.field_behavior) = OUTPUT_ONLY];
  84. // The name of the conversion action.
  85. //
  86. // This field is required and should not be empty when creating new
  87. // conversion actions.
  88. optional string name = 22;
  89. // Output only. Timestamp of the Floodlight activity's creation, formatted in ISO 8601.
  90. string creation_time = 33 [(google.api.field_behavior) = OUTPUT_ONLY];
  91. // The status of this conversion action for conversion event accrual.
  92. google.ads.searchads360.v0.enums.ConversionActionStatusEnum.ConversionActionStatus status = 4;
  93. // Immutable. The type of this conversion action.
  94. google.ads.searchads360.v0.enums.ConversionActionTypeEnum.ConversionActionType type = 5 [(google.api.field_behavior) = IMMUTABLE];
  95. // If a conversion action's primary_for_goal bit is false, the conversion
  96. // action is non-biddable for all campaigns regardless of their customer
  97. // conversion goal or campaign conversion goal.
  98. // However, custom conversion goals do not respect primary_for_goal, so if
  99. // a campaign has a custom conversion goal configured with a
  100. // primary_for_goal = false conversion action, that conversion action is
  101. // still biddable.
  102. // By default, primary_for_goal will be true if not set. In V9,
  103. // primary_for_goal can only be set to false after creation through an
  104. // 'update' operation because it's not declared as optional.
  105. optional bool primary_for_goal = 31;
  106. // The category of conversions reported for this conversion action.
  107. google.ads.searchads360.v0.enums.ConversionActionCategoryEnum.ConversionActionCategory category = 6;
  108. // Output only. The resource name of the conversion action owner customer, or null if this
  109. // is a system-defined conversion action.
  110. optional string owner_customer = 23 [
  111. (google.api.field_behavior) = OUTPUT_ONLY,
  112. (google.api.resource_reference) = {
  113. type: "searchads360.googleapis.com/Customer"
  114. }
  115. ];
  116. // Whether this conversion action should be included in the
  117. // "client_account_conversions" metric.
  118. optional bool include_in_client_account_conversions_metric = 24;
  119. // Output only. Whether this conversion action should be included in the "conversions"
  120. // metric.
  121. optional bool include_in_conversions_metric = 32 [(google.api.field_behavior) = OUTPUT_ONLY];
  122. // The maximum number of days that may elapse between an interaction
  123. // (for example, a click) and a conversion event.
  124. optional int64 click_through_lookback_window_days = 25;
  125. // Settings related to the value for conversion events associated with this
  126. // conversion action.
  127. ValueSettings value_settings = 11;
  128. // Settings related to this conversion action's attribution model.
  129. AttributionModelSettings attribution_model_settings = 13;
  130. // App ID for an app conversion action.
  131. optional string app_id = 28;
  132. // Output only. Floodlight settings for Floodlight conversion types.
  133. FloodlightSettings floodlight_settings = 29 [(google.api.field_behavior) = OUTPUT_ONLY];
  134. }