Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / google-proto-files / google / ads / googleads / v0 / enums / real_estate_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 = "RealEstatePlaceholderFieldProto";
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 Real Estate placeholder fields.
30
31 // Values for Real Estate placeholder fields.
32 // For more information about dynamic remarketing feeds, see
33 // https://support.google.com/google-ads/answer/6053288.
34 message RealEstatePlaceholderFieldEnum {
35   // Possible values for Real Estate placeholder fields.
36   enum RealEstatePlaceholderField {
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. Unique ID.
44     LISTING_ID = 2;
45
46     // Data Type: STRING. Main headline with listing name to be shown in dynamic
47     // ad.
48     LISTING_NAME = 3;
49
50     // Data Type: STRING. City name to be shown in dynamic ad.
51     CITY_NAME = 4;
52
53     // Data Type: STRING. Description of listing to be shown in dynamic ad.
54     DESCRIPTION = 5;
55
56     // Data Type: STRING. Complete listing address, including postal code.
57     ADDRESS = 6;
58
59     // Data Type: STRING. Price to be shown in the ad.
60     // Example: "100.00 USD"
61     PRICE = 7;
62
63     // Data Type: STRING. Formatted price to be shown in the ad.
64     // Example: "Starting at $100.00 USD", "$80 - $100"
65     FORMATTED_PRICE = 8;
66
67     // Data Type: URL. Image to be displayed in the ad.
68     IMAGE_URL = 9;
69
70     // Data Type: STRING. Type of property (house, condo, apartment, etc.) used
71     // to group like items together for recommendation engine.
72     PROPERTY_TYPE = 10;
73
74     // Data Type: STRING. Type of listing (resale, rental, foreclosure, etc.)
75     // used to group like items together for recommendation engine.
76     LISTING_TYPE = 11;
77
78     // Data Type: STRING_LIST. Keywords used for product retrieval.
79     CONTEXTUAL_KEYWORDS = 12;
80
81     // Data Type: URL_LIST. Final URLs to be used in ad when using Upgraded
82     // URLs; the more specific the better (e.g. the individual URL of a specific
83     // listing and its location).
84     FINAL_URLS = 13;
85
86     // Data Type: URL_LIST. Final mobile URLs for the ad when using Upgraded
87     // URLs.
88     FINAL_MOBILE_URLS = 14;
89
90     // Data Type: URL. Tracking template for the ad when using Upgraded URLs.
91     TRACKING_URL = 15;
92
93     // Data Type: STRING. Android app link. Must be formatted as:
94     // android-app://{package_id}/{scheme}/{host_path}.
95     // The components are defined as follows:
96     // package_id: app ID as specified in Google Play.
97     // scheme: the scheme to pass to the application. Can be HTTP, or a custom
98     //   scheme.
99     // host_path: identifies the specific content within your application.
100     ANDROID_APP_LINK = 16;
101
102     // Data Type: STRING_LIST. List of recommended listing IDs to show together
103     // with this item.
104     SIMILAR_LISTING_IDS = 17;
105
106     // Data Type: STRING. iOS app link.
107     IOS_APP_LINK = 18;
108
109     // Data Type: INT64. iOS app store ID.
110     IOS_APP_STORE_ID = 19;
111   }
112 }