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