aboutsummaryrefslogtreecommitdiff
path: root/google/ads/googleads/v0/resources/ad_group.proto
diff options
context:
space:
mode:
Diffstat (limited to 'google/ads/googleads/v0/resources/ad_group.proto')
-rw-r--r--google/ads/googleads/v0/resources/ad_group.proto99
1 files changed, 0 insertions, 99 deletions
diff --git a/google/ads/googleads/v0/resources/ad_group.proto b/google/ads/googleads/v0/resources/ad_group.proto
deleted file mode 100644
index a4cb3df6b..000000000
--- a/google/ads/googleads/v0/resources/ad_group.proto
+++ /dev/null
@@ -1,99 +0,0 @@
-// Copyright 2018 Google LLC
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
-// implied. See the License for the specific language governing
-// permissions and limitations under the License.
-
-
-// Proto file describing the ad group resource.
-syntax = "proto3";
-
-package google.ads.googleads.v0.resources;
-
-import "google/ads/googleads/v0/common/custom_parameter.proto";
-import "google/ads/googleads/v0/enums/ad_group_status.proto";
-import "google/ads/googleads/v0/enums/ad_group_type.proto";
-import "google/protobuf/wrappers.proto";
-
-option java_package = "com.google.ads.googleads.v0.resources";
-option java_outer_classname = "AdGroupProto";
-option java_multiple_files = true;
-
-// Objective-C prefix. Google Ads API.
-option objc_class_prefix = "GAA";
-option csharp_namespace = "Google.Ads.GoogleAds.V0.Resources";
-option php_namespace = "Google\\Ads\\GoogleAds\\V0\\Resources";
-option php_metadata_namespace = "Google\\Ads\\GoogleAds\\V0\\Resources";
-
-// An ad group.
-message AdGroup {
-
- // The resource name of the ad group.
- // Ad group resource names have the form:
- //
- // `customers/{customer_id}/adGroups/{ad_group_id}`
- string resource_name = 1;
-
- // The ID of the ad group.
- google.protobuf.Int64Value id = 3;
-
- // The name of the ad group.
- //
- // This field is required and should not be empty when creating new ad
- // groups.
- //
- // It must contain fewer than 255 UTF-8 full-width characters.
- //
- // It must not contain any null (code point 0x0), NL line feed
- // (code point 0xA) or carriage return (code point 0xD) characters.
- google.protobuf.StringValue name = 4;
-
- // The status of the ad group.
- enums.AdGroupStatusEnum.AdGroupStatus status = 5;
-
- // The type of the ad group.
- enums.AdGroupTypeEnum.AdGroupType type = 12;
-
- // The URL template for constructing a tracking URL.
- google.protobuf.StringValue tracking_url_template = 13;
-
- // The list of mappings used to substitute custom parameter tags in a
- // `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
- repeated common.CustomParameter url_custom_parameters = 6;
-
- // The campaign to which the ad group belongs.
- //
- // This field must not be used in WHERE clauses.
- google.protobuf.StringValue campaign = 10;
-
- // The maximum CPC (cost-per-click) bid.
- google.protobuf.Int64Value cpc_bid_micros = 14;
-
- // The maximum CPM (cost-per-thousand viewable impressions) bid.
- google.protobuf.Int64Value cpm_bid_micros = 15;
-
- // The target cost-per-acquisition (conversion) bid.
- google.protobuf.Int64Value cpa_bid_micros = 16;
-
- // The CPV (cost-per-view) bid.
- google.protobuf.Int64Value cpv_bid_micros = 17;
-
- // The target return on ad spend (ROAS) override. If the ad group's campaign
- // bidding strategy is a standard Target ROAS strategy, then this field
- // overrides the target ROAS specified in the campaign's bidding strategy.
- // Otherwise, this value is ignored.
- google.protobuf.DoubleValue target_roas_override = 19;
-
- // The percent cpc bid amount, expressed as a fraction of the advertised price
- // for some good or service. The valid range for the fraction is [0,1) and the
- // value stored here is 1,000,000 * [fraction].
- google.protobuf.Int64Value percent_cpc_bid_micros = 20;
-}