education_placeholder_field.proto 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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.v12.enums;
  16. option csharp_namespace = "Google.Ads.GoogleAds.V12.Enums";
  17. option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v12/enums;enums";
  18. option java_multiple_files = true;
  19. option java_outer_classname = "EducationPlaceholderFieldProto";
  20. option java_package = "com.google.ads.googleads.v12.enums";
  21. option objc_class_prefix = "GAA";
  22. option php_namespace = "Google\\Ads\\GoogleAds\\V12\\Enums";
  23. option ruby_package = "Google::Ads::GoogleAds::V12::Enums";
  24. // Proto file describing Education placeholder fields.
  25. // Values for Education placeholder fields.
  26. // For more information about dynamic remarketing feeds, see
  27. // https://support.google.com/google-ads/answer/6053288.
  28. message EducationPlaceholderFieldEnum {
  29. // Possible values for Education placeholder fields.
  30. enum EducationPlaceholderField {
  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. Combination of PROGRAM ID and LOCATION ID
  36. // must be unique per offer.
  37. PROGRAM_ID = 2;
  38. // Data Type: STRING. Combination of PROGRAM ID and LOCATION ID must be
  39. // unique per offer.
  40. LOCATION_ID = 3;
  41. // Data Type: STRING. Required. Main headline with program name to be shown
  42. // in dynamic ad.
  43. PROGRAM_NAME = 4;
  44. // Data Type: STRING. Area of study that can be shown in dynamic ad.
  45. AREA_OF_STUDY = 5;
  46. // Data Type: STRING. Description of program that can be shown in dynamic
  47. // ad.
  48. PROGRAM_DESCRIPTION = 6;
  49. // Data Type: STRING. Name of school that can be shown in dynamic ad.
  50. SCHOOL_NAME = 7;
  51. // Data Type: STRING. Complete school address, including postal code.
  52. ADDRESS = 8;
  53. // Data Type: URL. Image to be displayed in ads.
  54. THUMBNAIL_IMAGE_URL = 9;
  55. // Data Type: URL. Alternative hosted file of image to be used in the ad.
  56. ALTERNATIVE_THUMBNAIL_IMAGE_URL = 10;
  57. // Data Type: URL_LIST. Required. Final URLs to be used in ad when using
  58. // Upgraded URLs; the more specific the better (for example, the individual
  59. // URL of a specific program and its location).
  60. FINAL_URLS = 11;
  61. // Data Type: URL_LIST. Final mobile URLs for the ad when using Upgraded
  62. // URLs.
  63. FINAL_MOBILE_URLS = 12;
  64. // Data Type: URL. Tracking template for the ad when using Upgraded URLs.
  65. TRACKING_URL = 13;
  66. // Data Type: STRING_LIST. Keywords used for product retrieval.
  67. CONTEXTUAL_KEYWORDS = 14;
  68. // Data Type: STRING. Android app link. Must be formatted as:
  69. // android-app://{package_id}/{scheme}/{host_path}.
  70. // The components are defined as follows:
  71. // package_id: app ID as specified in Google Play.
  72. // scheme: the scheme to pass to the application. Can be HTTP, or a custom
  73. // scheme.
  74. // host_path: identifies the specific content within your application.
  75. ANDROID_APP_LINK = 15;
  76. // Data Type: STRING_LIST. List of recommended program IDs to show together
  77. // with this item.
  78. SIMILAR_PROGRAM_IDS = 16;
  79. // Data Type: STRING. iOS app link.
  80. IOS_APP_LINK = 17;
  81. // Data Type: INT64. iOS app store ID.
  82. IOS_APP_STORE_ID = 18;
  83. }
  84. }