price_placeholder_field.proto 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  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 = "PricePlaceholderFieldProto";
  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 Price placeholder fields.
  25. // Values for Price placeholder fields.
  26. message PricePlaceholderFieldEnum {
  27. // Possible values for Price placeholder fields.
  28. enum PricePlaceholderField {
  29. // Not specified.
  30. UNSPECIFIED = 0;
  31. // Used for return value only. Represents value unknown in this version.
  32. UNKNOWN = 1;
  33. // Data Type: STRING. The type of your price feed. Must match one of the
  34. // predefined price feed type exactly.
  35. TYPE = 2;
  36. // Data Type: STRING. The qualifier of each price. Must match one of the
  37. // predefined price qualifiers exactly.
  38. PRICE_QUALIFIER = 3;
  39. // Data Type: URL. Tracking template for the price feed when using Upgraded
  40. // URLs.
  41. TRACKING_TEMPLATE = 4;
  42. // Data Type: STRING. Language of the price feed. Must match one of the
  43. // available available locale codes exactly.
  44. LANGUAGE = 5;
  45. // Data Type: STRING. Final URL suffix for the price feed when using
  46. // parallel tracking.
  47. FINAL_URL_SUFFIX = 6;
  48. // Data Type: STRING. The header of item 1 of the table.
  49. ITEM_1_HEADER = 100;
  50. // Data Type: STRING. The description of item 1 of the table.
  51. ITEM_1_DESCRIPTION = 101;
  52. // Data Type: MONEY. The price (money with currency) of item 1 of the table,
  53. // e.g., 30 USD. The currency must match one of the available currencies.
  54. ITEM_1_PRICE = 102;
  55. // Data Type: STRING. The price unit of item 1 of the table. Must match one
  56. // of the predefined price units.
  57. ITEM_1_UNIT = 103;
  58. // Data Type: URL_LIST. The final URLs of item 1 of the table when using
  59. // Upgraded URLs.
  60. ITEM_1_FINAL_URLS = 104;
  61. // Data Type: URL_LIST. The final mobile URLs of item 1 of the table when
  62. // using Upgraded URLs.
  63. ITEM_1_FINAL_MOBILE_URLS = 105;
  64. // Data Type: STRING. The header of item 2 of the table.
  65. ITEM_2_HEADER = 200;
  66. // Data Type: STRING. The description of item 2 of the table.
  67. ITEM_2_DESCRIPTION = 201;
  68. // Data Type: MONEY. The price (money with currency) of item 2 of the table,
  69. // e.g., 30 USD. The currency must match one of the available currencies.
  70. ITEM_2_PRICE = 202;
  71. // Data Type: STRING. The price unit of item 2 of the table. Must match one
  72. // of the predefined price units.
  73. ITEM_2_UNIT = 203;
  74. // Data Type: URL_LIST. The final URLs of item 2 of the table when using
  75. // Upgraded URLs.
  76. ITEM_2_FINAL_URLS = 204;
  77. // Data Type: URL_LIST. The final mobile URLs of item 2 of the table when
  78. // using Upgraded URLs.
  79. ITEM_2_FINAL_MOBILE_URLS = 205;
  80. // Data Type: STRING. The header of item 3 of the table.
  81. ITEM_3_HEADER = 300;
  82. // Data Type: STRING. The description of item 3 of the table.
  83. ITEM_3_DESCRIPTION = 301;
  84. // Data Type: MONEY. The price (money with currency) of item 3 of the table,
  85. // e.g., 30 USD. The currency must match one of the available currencies.
  86. ITEM_3_PRICE = 302;
  87. // Data Type: STRING. The price unit of item 3 of the table. Must match one
  88. // of the predefined price units.
  89. ITEM_3_UNIT = 303;
  90. // Data Type: URL_LIST. The final URLs of item 3 of the table when using
  91. // Upgraded URLs.
  92. ITEM_3_FINAL_URLS = 304;
  93. // Data Type: URL_LIST. The final mobile URLs of item 3 of the table when
  94. // using Upgraded URLs.
  95. ITEM_3_FINAL_MOBILE_URLS = 305;
  96. // Data Type: STRING. The header of item 4 of the table.
  97. ITEM_4_HEADER = 400;
  98. // Data Type: STRING. The description of item 4 of the table.
  99. ITEM_4_DESCRIPTION = 401;
  100. // Data Type: MONEY. The price (money with currency) of item 4 of the table,
  101. // e.g., 30 USD. The currency must match one of the available currencies.
  102. ITEM_4_PRICE = 402;
  103. // Data Type: STRING. The price unit of item 4 of the table. Must match one
  104. // of the predefined price units.
  105. ITEM_4_UNIT = 403;
  106. // Data Type: URL_LIST. The final URLs of item 4 of the table when using
  107. // Upgraded URLs.
  108. ITEM_4_FINAL_URLS = 404;
  109. // Data Type: URL_LIST. The final mobile URLs of item 4 of the table when
  110. // using Upgraded URLs.
  111. ITEM_4_FINAL_MOBILE_URLS = 405;
  112. // Data Type: STRING. The header of item 5 of the table.
  113. ITEM_5_HEADER = 500;
  114. // Data Type: STRING. The description of item 5 of the table.
  115. ITEM_5_DESCRIPTION = 501;
  116. // Data Type: MONEY. The price (money with currency) of item 5 of the table,
  117. // e.g., 30 USD. The currency must match one of the available currencies.
  118. ITEM_5_PRICE = 502;
  119. // Data Type: STRING. The price unit of item 5 of the table. Must match one
  120. // of the predefined price units.
  121. ITEM_5_UNIT = 503;
  122. // Data Type: URL_LIST. The final URLs of item 5 of the table when using
  123. // Upgraded URLs.
  124. ITEM_5_FINAL_URLS = 504;
  125. // Data Type: URL_LIST. The final mobile URLs of item 5 of the table when
  126. // using Upgraded URLs.
  127. ITEM_5_FINAL_MOBILE_URLS = 505;
  128. // Data Type: STRING. The header of item 6 of the table.
  129. ITEM_6_HEADER = 600;
  130. // Data Type: STRING. The description of item 6 of the table.
  131. ITEM_6_DESCRIPTION = 601;
  132. // Data Type: MONEY. The price (money with currency) of item 6 of the table,
  133. // e.g., 30 USD. The currency must match one of the available currencies.
  134. ITEM_6_PRICE = 602;
  135. // Data Type: STRING. The price unit of item 6 of the table. Must match one
  136. // of the predefined price units.
  137. ITEM_6_UNIT = 603;
  138. // Data Type: URL_LIST. The final URLs of item 6 of the table when using
  139. // Upgraded URLs.
  140. ITEM_6_FINAL_URLS = 604;
  141. // Data Type: URL_LIST. The final mobile URLs of item 6 of the table when
  142. // using Upgraded URLs.
  143. ITEM_6_FINAL_MOBILE_URLS = 605;
  144. // Data Type: STRING. The header of item 7 of the table.
  145. ITEM_7_HEADER = 700;
  146. // Data Type: STRING. The description of item 7 of the table.
  147. ITEM_7_DESCRIPTION = 701;
  148. // Data Type: MONEY. The price (money with currency) of item 7 of the table,
  149. // e.g., 30 USD. The currency must match one of the available currencies.
  150. ITEM_7_PRICE = 702;
  151. // Data Type: STRING. The price unit of item 7 of the table. Must match one
  152. // of the predefined price units.
  153. ITEM_7_UNIT = 703;
  154. // Data Type: URL_LIST. The final URLs of item 7 of the table when using
  155. // Upgraded URLs.
  156. ITEM_7_FINAL_URLS = 704;
  157. // Data Type: URL_LIST. The final mobile URLs of item 7 of the table when
  158. // using Upgraded URLs.
  159. ITEM_7_FINAL_MOBILE_URLS = 705;
  160. // Data Type: STRING. The header of item 8 of the table.
  161. ITEM_8_HEADER = 800;
  162. // Data Type: STRING. The description of item 8 of the table.
  163. ITEM_8_DESCRIPTION = 801;
  164. // Data Type: MONEY. The price (money with currency) of item 8 of the table,
  165. // e.g., 30 USD. The currency must match one of the available currencies.
  166. ITEM_8_PRICE = 802;
  167. // Data Type: STRING. The price unit of item 8 of the table. Must match one
  168. // of the predefined price units.
  169. ITEM_8_UNIT = 803;
  170. // Data Type: URL_LIST. The final URLs of item 8 of the table when using
  171. // Upgraded URLs.
  172. ITEM_8_FINAL_URLS = 804;
  173. // Data Type: URL_LIST. The final mobile URLs of item 8 of the table when
  174. // using Upgraded URLs.
  175. ITEM_8_FINAL_MOBILE_URLS = 805;
  176. }
  177. }