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