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