job_placeholder_field.proto 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. // Copyright 2022 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. syntax = "proto3";
  15. package google.ads.googleads.v11.enums;
  16. option csharp_namespace = "Google.Ads.GoogleAds.V11.Enums";
  17. option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v11/enums;enums";
  18. option java_multiple_files = true;
  19. option java_outer_classname = "JobsPlaceholderFieldProto";
  20. option java_package = "com.google.ads.googleads.v11.enums";
  21. option objc_class_prefix = "GAA";
  22. option php_namespace = "Google\\Ads\\GoogleAds\\V11\\Enums";
  23. option ruby_package = "Google::Ads::GoogleAds::V11::Enums";
  24. // Proto file describing Job placeholder fields.
  25. // Values for Job placeholder fields.
  26. // For more information about dynamic remarketing feeds, see
  27. // https://support.google.com/google-ads/answer/6053288.
  28. message JobPlaceholderFieldEnum {
  29. // Possible values for Job placeholder fields.
  30. enum JobPlaceholderField {
  31. // Not specified.
  32. UNSPECIFIED = 0;
  33. // Used for return value only. Represents value unknown in this version.
  34. UNKNOWN = 1;
  35. // Data Type: STRING. Required. If only JOB_ID is specified, then it must be
  36. // unique. If both JOB_ID and LOCATION_ID are specified, then the
  37. // pair must be unique.
  38. // ID) pair must be unique.
  39. JOB_ID = 2;
  40. // Data Type: STRING. Combination of JOB_ID and LOCATION_ID must be unique
  41. // per offer.
  42. LOCATION_ID = 3;
  43. // Data Type: STRING. Required. Main headline with job title to be shown in
  44. // dynamic ad.
  45. TITLE = 4;
  46. // Data Type: STRING. Job subtitle to be shown in dynamic ad.
  47. SUBTITLE = 5;
  48. // Data Type: STRING. Description of job to be shown in dynamic ad.
  49. DESCRIPTION = 6;
  50. // Data Type: URL. Image to be displayed in the ad. Highly recommended for
  51. // image ads.
  52. IMAGE_URL = 7;
  53. // Data Type: STRING. Category of property used to group like items together
  54. // for recommendation engine.
  55. CATEGORY = 8;
  56. // Data Type: STRING_LIST. Keywords used for product retrieval.
  57. CONTEXTUAL_KEYWORDS = 9;
  58. // Data Type: STRING. Complete property address, including postal code.
  59. ADDRESS = 10;
  60. // Data Type: STRING. Salary or salary range of job to be shown in dynamic
  61. // ad.
  62. SALARY = 11;
  63. // Data Type: URL_LIST. Required. Final URLs to be used in ad when using
  64. // Upgraded URLs; the more specific the better (for example, the individual
  65. // URL of a specific job and its location).
  66. FINAL_URLS = 12;
  67. // Data Type: URL_LIST. Final mobile URLs for the ad when using Upgraded
  68. // URLs.
  69. FINAL_MOBILE_URLS = 14;
  70. // Data Type: URL. Tracking template for the ad when using Upgraded URLs.
  71. TRACKING_URL = 15;
  72. // Data Type: STRING. Android app link. Must be formatted as:
  73. // android-app://{package_id}/{scheme}/{host_path}.
  74. // The components are defined as follows:
  75. // package_id: app ID as specified in Google Play.
  76. // scheme: the scheme to pass to the application. Can be HTTP, or a custom
  77. // scheme.
  78. // host_path: identifies the specific content within your application.
  79. ANDROID_APP_LINK = 16;
  80. // Data Type: STRING_LIST. List of recommended job IDs to show together with
  81. // this item.
  82. SIMILAR_JOB_IDS = 17;
  83. // Data Type: STRING. iOS app link.
  84. IOS_APP_LINK = 18;
  85. // Data Type: INT64. iOS app store ID.
  86. IOS_APP_STORE_ID = 19;
  87. }
  88. }