Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / google-proto-files / google / ads / googleads / v0 / enums / local_placeholder_field.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.enums;
19
20 option csharp_namespace = "Google.Ads.GoogleAds.V0.Enums";
21 option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v0/enums;enums";
22 option java_multiple_files = true;
23 option java_outer_classname = "LocalPlaceholderFieldProto";
24 option java_package = "com.google.ads.googleads.v0.enums";
25 option objc_class_prefix = "GAA";
26 option php_namespace = "Google\\Ads\\GoogleAds\\V0\\Enums";
27 option ruby_package = "Google::Ads::GoogleAds::V0::Enums";
28
29 // Proto file describing Local placeholder fields.
30
31 // Values for Local placeholder fields.
32 // For more information about dynamic remarketing feeds, see
33 // https://support.google.com/google-ads/answer/6053288.
34 message LocalPlaceholderFieldEnum {
35   // Possible values for Local placeholder fields.
36   enum LocalPlaceholderField {
37     // Not specified.
38     UNSPECIFIED = 0;
39
40     // Used for return value only. Represents value unknown in this version.
41     UNKNOWN = 1;
42
43     // Data Type: STRING. Required. Unique ID.
44     DEAL_ID = 2;
45
46     // Data Type: STRING. Required. Main headline with local deal title to be
47     // shown in dynamic ad.
48     DEAL_NAME = 3;
49
50     // Data Type: STRING. Local deal subtitle to be shown in dynamic ad.
51     SUBTITLE = 4;
52
53     // Data Type: STRING. Description of local deal to be shown in dynamic ad.
54     DESCRIPTION = 5;
55
56     // Data Type: STRING. Price to be shown in the ad. Highly recommended for
57     // dynamic ads. Example: "100.00 USD"
58     PRICE = 6;
59
60     // Data Type: STRING. Formatted price to be shown in the ad.
61     // Example: "Starting at $100.00 USD", "$80 - $100"
62     FORMATTED_PRICE = 7;
63
64     // Data Type: STRING. Sale price to be shown in the ad.
65     // Example: "80.00 USD"
66     SALE_PRICE = 8;
67
68     // Data Type: STRING. Formatted sale price to be shown in the ad.
69     // Example: "On sale for $80.00", "$60 - $80"
70     FORMATTED_SALE_PRICE = 9;
71
72     // Data Type: URL. Image to be displayed in the ad.
73     IMAGE_URL = 10;
74
75     // Data Type: STRING. Complete property address, including postal code.
76     ADDRESS = 11;
77
78     // Data Type: STRING. Category of local deal used to group like items
79     // together for recommendation engine.
80     CATEGORY = 12;
81
82     // Data Type: STRING_LIST. Keywords used for product retrieval.
83     CONTEXTUAL_KEYWORDS = 13;
84
85     // Data Type: URL_LIST. Required. Final URLs to be used in ad when using
86     // Upgraded URLs; the more specific the better (e.g. the individual URL of a
87     // specific local deal and its location).
88     FINAL_URLS = 14;
89
90     // Data Type: URL_LIST. Final mobile URLs for the ad when using Upgraded
91     // URLs.
92     FINAL_MOBILE_URLS = 15;
93
94     // Data Type: URL. Tracking template for the ad when using Upgraded URLs.
95     TRACKING_URL = 16;
96
97     // Data Type: STRING. Android app link. Must be formatted as:
98     // android-app://{package_id}/{scheme}/{host_path}.
99     // The components are defined as follows:
100     // package_id: app ID as specified in Google Play.
101     // scheme: the scheme to pass to the application. Can be HTTP, or a custom
102     //   scheme.
103     // host_path: identifies the specific content within your application.
104     ANDROID_APP_LINK = 17;
105
106     // Data Type: STRING_LIST. List of recommended local deal IDs to show
107     // together with this item.
108     SIMILAR_DEAL_IDS = 18;
109
110     // Data Type: STRING. iOS app link.
111     IOS_APP_LINK = 19;
112
113     // Data Type: INT64. iOS app store ID.
114     IOS_APP_STORE_ID = 20;
115   }
116 }