ad_group.proto 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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.v12.resources;
  16. import "google/ads/googleads/v12/common/custom_parameter.proto";
  17. import "google/ads/googleads/v12/common/explorer_auto_optimizer_setting.proto";
  18. import "google/ads/googleads/v12/common/targeting_setting.proto";
  19. import "google/ads/googleads/v12/enums/ad_group_ad_rotation_mode.proto";
  20. import "google/ads/googleads/v12/enums/ad_group_status.proto";
  21. import "google/ads/googleads/v12/enums/ad_group_type.proto";
  22. import "google/ads/googleads/v12/enums/asset_field_type.proto";
  23. import "google/ads/googleads/v12/enums/asset_set_type.proto";
  24. import "google/ads/googleads/v12/enums/bidding_source.proto";
  25. import "google/ads/googleads/v12/enums/targeting_dimension.proto";
  26. import "google/api/field_behavior.proto";
  27. import "google/api/resource.proto";
  28. option csharp_namespace = "Google.Ads.GoogleAds.V12.Resources";
  29. option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v12/resources;resources";
  30. option java_multiple_files = true;
  31. option java_outer_classname = "AdGroupProto";
  32. option java_package = "com.google.ads.googleads.v12.resources";
  33. option objc_class_prefix = "GAA";
  34. option php_namespace = "Google\\Ads\\GoogleAds\\V12\\Resources";
  35. option ruby_package = "Google::Ads::GoogleAds::V12::Resources";
  36. // Proto file describing the ad group resource.
  37. // An ad group.
  38. message AdGroup {
  39. option (google.api.resource) = {
  40. type: "googleads.googleapis.com/AdGroup"
  41. pattern: "customers/{customer_id}/adGroups/{ad_group_id}"
  42. };
  43. // Settings for the audience targeting.
  44. message AudienceSetting {
  45. // Immutable. If true, this ad group uses an Audience resource for audience targeting.
  46. // If false, this ad group may use audience segment criteria instead.
  47. bool use_audience_grouped = 1 [(google.api.field_behavior) = IMMUTABLE];
  48. }
  49. // Immutable. The resource name of the ad group.
  50. // Ad group resource names have the form:
  51. //
  52. // `customers/{customer_id}/adGroups/{ad_group_id}`
  53. string resource_name = 1 [
  54. (google.api.field_behavior) = IMMUTABLE,
  55. (google.api.resource_reference) = {
  56. type: "googleads.googleapis.com/AdGroup"
  57. }
  58. ];
  59. // Output only. The ID of the ad group.
  60. optional int64 id = 34 [(google.api.field_behavior) = OUTPUT_ONLY];
  61. // The name of the ad group.
  62. //
  63. // This field is required and should not be empty when creating new ad
  64. // groups.
  65. //
  66. // It must contain fewer than 255 UTF-8 full-width characters.
  67. //
  68. // It must not contain any null (code point 0x0), NL line feed
  69. // (code point 0xA) or carriage return (code point 0xD) characters.
  70. optional string name = 35;
  71. // The status of the ad group.
  72. google.ads.googleads.v12.enums.AdGroupStatusEnum.AdGroupStatus status = 5;
  73. // Immutable. The type of the ad group.
  74. google.ads.googleads.v12.enums.AdGroupTypeEnum.AdGroupType type = 12 [(google.api.field_behavior) = IMMUTABLE];
  75. // The ad rotation mode of the ad group.
  76. google.ads.googleads.v12.enums.AdGroupAdRotationModeEnum.AdGroupAdRotationMode ad_rotation_mode = 22;
  77. // Output only. For draft or experiment ad groups, this field is the resource name of the
  78. // base ad group from which this ad group was created. If a draft or
  79. // experiment ad group does not have a base ad group, then this field is null.
  80. //
  81. // For base ad groups, this field equals the ad group resource name.
  82. //
  83. // This field is read-only.
  84. optional string base_ad_group = 36 [
  85. (google.api.field_behavior) = OUTPUT_ONLY,
  86. (google.api.resource_reference) = {
  87. type: "googleads.googleapis.com/AdGroup"
  88. }
  89. ];
  90. // The URL template for constructing a tracking URL.
  91. optional string tracking_url_template = 37;
  92. // The list of mappings used to substitute custom parameter tags in a
  93. // `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
  94. repeated google.ads.googleads.v12.common.CustomParameter url_custom_parameters = 6;
  95. // Immutable. The campaign to which the ad group belongs.
  96. optional string campaign = 38 [
  97. (google.api.field_behavior) = IMMUTABLE,
  98. (google.api.resource_reference) = {
  99. type: "googleads.googleapis.com/Campaign"
  100. }
  101. ];
  102. // The maximum CPC (cost-per-click) bid.
  103. optional int64 cpc_bid_micros = 39;
  104. // Output only. Value will be same as that of the CPC (cost-per-click) bid value when the
  105. // bidding strategy is one of manual cpc, enhanced cpc, page one promoted or
  106. // target outrank share, otherwise the value will be null.
  107. optional int64 effective_cpc_bid_micros = 57 [(google.api.field_behavior) = OUTPUT_ONLY];
  108. // The maximum CPM (cost-per-thousand viewable impressions) bid.
  109. optional int64 cpm_bid_micros = 40;
  110. // The target CPA (cost-per-acquisition). If the ad group's campaign
  111. // bidding strategy is TargetCpa or MaximizeConversions (with its target_cpa
  112. // field set), then this field overrides the target CPA specified in the
  113. // campaign's bidding strategy.
  114. // Otherwise, this value is ignored.
  115. optional int64 target_cpa_micros = 41;
  116. // The CPV (cost-per-view) bid.
  117. optional int64 cpv_bid_micros = 42;
  118. // Average amount in micros that the advertiser is willing to pay for every
  119. // thousand times the ad is shown.
  120. optional int64 target_cpm_micros = 43;
  121. // The target ROAS (return-on-ad-spend) override. If the ad group's campaign
  122. // bidding strategy is TargetRoas or MaximizeConversionValue (with its
  123. // target_roas field set), then this field overrides the target ROAS specified
  124. // in the campaign's bidding strategy.
  125. // Otherwise, this value is ignored.
  126. optional double target_roas = 44;
  127. // The percent cpc bid amount, expressed as a fraction of the advertised price
  128. // for some good or service. The valid range for the fraction is [0,1) and the
  129. // value stored here is 1,000,000 * [fraction].
  130. optional int64 percent_cpc_bid_micros = 45;
  131. // Settings for the Display Campaign Optimizer, initially termed "Explorer".
  132. google.ads.googleads.v12.common.ExplorerAutoOptimizerSetting explorer_auto_optimizer_setting = 21;
  133. // Allows advertisers to specify a targeting dimension on which to place
  134. // absolute bids. This is only applicable for campaigns that target only the
  135. // display network and not search.
  136. google.ads.googleads.v12.enums.TargetingDimensionEnum.TargetingDimension display_custom_bid_dimension = 23;
  137. // URL template for appending params to Final URL.
  138. optional string final_url_suffix = 46;
  139. // Setting for targeting related features.
  140. google.ads.googleads.v12.common.TargetingSetting targeting_setting = 25;
  141. // Immutable. Setting for audience related features.
  142. AudienceSetting audience_setting = 56 [(google.api.field_behavior) = IMMUTABLE];
  143. // Output only. The effective target CPA (cost-per-acquisition).
  144. // This field is read-only.
  145. optional int64 effective_target_cpa_micros = 47 [(google.api.field_behavior) = OUTPUT_ONLY];
  146. // Output only. Source of the effective target CPA.
  147. // This field is read-only.
  148. google.ads.googleads.v12.enums.BiddingSourceEnum.BiddingSource effective_target_cpa_source = 29 [(google.api.field_behavior) = OUTPUT_ONLY];
  149. // Output only. The effective target ROAS (return-on-ad-spend).
  150. // This field is read-only.
  151. optional double effective_target_roas = 48 [(google.api.field_behavior) = OUTPUT_ONLY];
  152. // Output only. Source of the effective target ROAS.
  153. // This field is read-only.
  154. google.ads.googleads.v12.enums.BiddingSourceEnum.BiddingSource effective_target_roas_source = 32 [(google.api.field_behavior) = OUTPUT_ONLY];
  155. // Output only. The resource names of labels attached to this ad group.
  156. repeated string labels = 49 [
  157. (google.api.field_behavior) = OUTPUT_ONLY,
  158. (google.api.resource_reference) = {
  159. type: "googleads.googleapis.com/AdGroupLabel"
  160. }
  161. ];
  162. // The asset field types that should be excluded from this ad group. Asset
  163. // links with these field types will not be inherited by this ad group from
  164. // the upper levels.
  165. repeated google.ads.googleads.v12.enums.AssetFieldTypeEnum.AssetFieldType excluded_parent_asset_field_types = 54;
  166. // The asset set types that should be excluded from this ad group. Asset set
  167. // links with these types will not be inherited by this ad group from the
  168. // upper levels.
  169. // Location group types (GMB_DYNAMIC_LOCATION_GROUP,
  170. // CHAIN_DYNAMIC_LOCATION_GROUP, and STATIC_LOCATION_GROUP) are child types of
  171. // LOCATION_SYNC. Therefore, if LOCATION_SYNC is set for this field, all
  172. // location group asset sets are not allowed to be linked to this ad group,
  173. // and all Location Extension (LE) and Affiliate Location Extensions (ALE)
  174. // will not be served under this ad group.
  175. // Only LOCATION_SYNC is currently supported.
  176. repeated google.ads.googleads.v12.enums.AssetSetTypeEnum.AssetSetType excluded_parent_asset_set_types = 58;
  177. }