hotel_placeholder_field.proto 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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.v10.enums;
  16. option csharp_namespace = "Google.Ads.GoogleAds.V10.Enums";
  17. option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v10/enums;enums";
  18. option java_multiple_files = true;
  19. option java_outer_classname = "HotelsPlaceholderFieldProto";
  20. option java_package = "com.google.ads.googleads.v10.enums";
  21. option objc_class_prefix = "GAA";
  22. option php_namespace = "Google\\Ads\\GoogleAds\\V10\\Enums";
  23. option ruby_package = "Google::Ads::GoogleAds::V10::Enums";
  24. // Proto file describing Hotel placeholder fields.
  25. // Values for Hotel placeholder fields.
  26. // For more information about dynamic remarketing feeds, see
  27. // https://support.google.com/google-ads/answer/6053288.
  28. message HotelPlaceholderFieldEnum {
  29. // Possible values for Hotel placeholder fields.
  30. enum HotelPlaceholderField {
  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. Unique ID.
  36. PROPERTY_ID = 2;
  37. // Data Type: STRING. Required. Main headline with property name to be shown
  38. // in dynamic ad.
  39. PROPERTY_NAME = 3;
  40. // Data Type: STRING. Name of destination to be shown in dynamic ad.
  41. DESTINATION_NAME = 4;
  42. // Data Type: STRING. Description of destination to be shown in dynamic ad.
  43. DESCRIPTION = 5;
  44. // Data Type: STRING. Complete property address, including postal code.
  45. ADDRESS = 6;
  46. // Data Type: STRING. Price to be shown in the ad.
  47. // Example: "100.00 USD"
  48. PRICE = 7;
  49. // Data Type: STRING. Formatted price to be shown in the ad.
  50. // Example: "Starting at $100.00 USD", "$80 - $100"
  51. FORMATTED_PRICE = 8;
  52. // Data Type: STRING. Sale price to be shown in the ad.
  53. // Example: "80.00 USD"
  54. SALE_PRICE = 9;
  55. // Data Type: STRING. Formatted sale price to be shown in the ad.
  56. // Example: "On sale for $80.00", "$60 - $80"
  57. FORMATTED_SALE_PRICE = 10;
  58. // Data Type: URL. Image to be displayed in the ad.
  59. IMAGE_URL = 11;
  60. // Data Type: STRING. Category of property used to group like items together
  61. // for recommendation engine.
  62. CATEGORY = 12;
  63. // Data Type: INT64. Star rating (1 to 5) used to group like items
  64. // together for recommendation engine.
  65. STAR_RATING = 13;
  66. // Data Type: STRING_LIST. Keywords used for product retrieval.
  67. CONTEXTUAL_KEYWORDS = 14;
  68. // Data Type: URL_LIST. Required. Final URLs for the ad when using Upgraded
  69. // URLs. User will be redirected to these URLs when they click on an ad, or
  70. // when they click on a specific flight for ads that show multiple
  71. // flights.
  72. FINAL_URLS = 15;
  73. // Data Type: URL_LIST. Final mobile URLs for the ad when using Upgraded
  74. // URLs.
  75. FINAL_MOBILE_URLS = 16;
  76. // Data Type: URL. Tracking template for the ad when using Upgraded URLs.
  77. TRACKING_URL = 17;
  78. // Data Type: STRING. Android app link. Must be formatted as:
  79. // android-app://{package_id}/{scheme}/{host_path}.
  80. // The components are defined as follows:
  81. // package_id: app ID as specified in Google Play.
  82. // scheme: the scheme to pass to the application. Can be HTTP, or a custom
  83. // scheme.
  84. // host_path: identifies the specific content within your application.
  85. ANDROID_APP_LINK = 18;
  86. // Data Type: STRING_LIST. List of recommended property IDs to show together
  87. // with this item.
  88. SIMILAR_PROPERTY_IDS = 19;
  89. // Data Type: STRING. iOS app link.
  90. IOS_APP_LINK = 20;
  91. // Data Type: INT64. iOS app store ID.
  92. IOS_APP_STORE_ID = 21;
  93. }
  94. }