Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / google-proto-files / google / ads / googleads / v1 / enums / job_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 = "JobsPlaceholderFieldProto";
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 Job placeholder fields.
31
32 // Values for Job placeholder fields.
33 // For more information about dynamic remarketing feeds, see
34 // https://support.google.com/google-ads/answer/6053288.
35 message JobPlaceholderFieldEnum {
36   // Possible values for Job placeholder fields.
37   enum JobPlaceholderField {
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. If only JOB_ID is specified, then it must be
45     // unique. If both JOB_ID and LOCATION_ID are specified, then the
46     // pair must be unique.
47     // ID) pair must be unique.
48     JOB_ID = 2;
49
50     // Data Type: STRING. Combination of JOB_ID and LOCATION_ID must be unique
51     // per offer.
52     LOCATION_ID = 3;
53
54     // Data Type: STRING. Required. Main headline with job title to be shown in
55     // dynamic ad.
56     TITLE = 4;
57
58     // Data Type: STRING. Job subtitle to be shown in dynamic ad.
59     SUBTITLE = 5;
60
61     // Data Type: STRING. Description of job to be shown in dynamic ad.
62     DESCRIPTION = 6;
63
64     // Data Type: URL. Image to be displayed in the ad. Highly recommended for
65     // image ads.
66     IMAGE_URL = 7;
67
68     // Data Type: STRING. Category of property used to group like items together
69     // for recommendation engine.
70     CATEGORY = 8;
71
72     // Data Type: STRING_LIST. Keywords used for product retrieval.
73     CONTEXTUAL_KEYWORDS = 9;
74
75     // Data Type: STRING. Complete property address, including postal code.
76     ADDRESS = 10;
77
78     // Data Type: STRING. Salary or salary range of job to be shown in dynamic
79     // ad.
80     SALARY = 11;
81
82     // Data Type: URL_LIST. Required. Final URLs to be used in ad when using
83     // Upgraded URLs; the more specific the better (e.g. the individual URL of a
84     // specific job and its location).
85     FINAL_URLS = 12;
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 job IDs to show together with
104     // this item.
105     SIMILAR_JOB_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 }