Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / google-proto-files / google / ads / googleads / v0 / resources / ad_group_feed.proto
1 // Copyright 2018 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 //
15
16 syntax = "proto3";
17
18 package google.ads.googleads.v0.resources;
19
20 import "google/ads/googleads/v0/common/matching_function.proto";
21 import "google/ads/googleads/v0/enums/feed_link_status.proto";
22 import "google/ads/googleads/v0/enums/placeholder_type.proto";
23 import "google/protobuf/wrappers.proto";
24
25 option csharp_namespace = "Google.Ads.GoogleAds.V0.Resources";
26 option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v0/resources;resources";
27 option java_multiple_files = true;
28 option java_outer_classname = "AdGroupFeedProto";
29 option java_package = "com.google.ads.googleads.v0.resources";
30 option objc_class_prefix = "GAA";
31 option php_namespace = "Google\\Ads\\GoogleAds\\V0\\Resources";
32 option ruby_package = "Google::Ads::GoogleAds::V0::Resources";
33
34 // Proto file describing the AdGroupFeed resource.
35
36 // An ad group feed.
37 message AdGroupFeed {
38   // The resource name of the ad group feed.
39   // Ad group feed resource names have the form:
40   //
41   // `customers/{customer_id}/adGroupFeeds/{ad_group_id}_{feed_id}
42   string resource_name = 1;
43
44   // The feed being linked to the ad group.
45   google.protobuf.StringValue feed = 2;
46
47   // The ad group being linked to the feed.
48   google.protobuf.StringValue ad_group = 3;
49
50   // Indicates which placeholder types the feed may populate under the connected
51   // ad group. Required.
52   repeated google.ads.googleads.v0.enums.PlaceholderTypeEnum.PlaceholderType
53       placeholder_types = 4;
54
55   // Matching function associated with the AdGroupFeed.
56   // The matching function is used to filter the set of feed items selected.
57   // Required.
58   google.ads.googleads.v0.common.MatchingFunction matching_function = 5;
59
60   // Status of the ad group feed.
61   // This field is read-only.
62   google.ads.googleads.v0.enums.FeedLinkStatusEnum.FeedLinkStatus status = 6;
63 }