vanity_pharma_text.proto 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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 = "VanityPharmaTextProto";
  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 vanity pharma texts.
  25. // The text that will be displayed in display URL of the text ad when website
  26. // description is the selected display mode for vanity pharma URLs.
  27. message VanityPharmaTextEnum {
  28. // Enum describing possible text.
  29. enum VanityPharmaText {
  30. // Not specified.
  31. UNSPECIFIED = 0;
  32. // Used for return value only. Represents value unknown in this version.
  33. UNKNOWN = 1;
  34. // Prescription treatment website with website content in English.
  35. PRESCRIPTION_TREATMENT_WEBSITE_EN = 2;
  36. // Prescription treatment website with website content in Spanish
  37. // (Sitio de tratamientos con receta).
  38. PRESCRIPTION_TREATMENT_WEBSITE_ES = 3;
  39. // Prescription device website with website content in English.
  40. PRESCRIPTION_DEVICE_WEBSITE_EN = 4;
  41. // Prescription device website with website content in Spanish (Sitio de
  42. // dispositivos con receta).
  43. PRESCRIPTION_DEVICE_WEBSITE_ES = 5;
  44. // Medical device website with website content in English.
  45. MEDICAL_DEVICE_WEBSITE_EN = 6;
  46. // Medical device website with website content in Spanish (Sitio de
  47. // dispositivos médicos).
  48. MEDICAL_DEVICE_WEBSITE_ES = 7;
  49. // Preventative treatment website with website content in English.
  50. PREVENTATIVE_TREATMENT_WEBSITE_EN = 8;
  51. // Preventative treatment website with website content in Spanish (Sitio de
  52. // tratamientos preventivos).
  53. PREVENTATIVE_TREATMENT_WEBSITE_ES = 9;
  54. // Prescription contraception website with website content in English.
  55. PRESCRIPTION_CONTRACEPTION_WEBSITE_EN = 10;
  56. // Prescription contraception website with website content in Spanish (Sitio
  57. // de anticonceptivos con receta).
  58. PRESCRIPTION_CONTRACEPTION_WEBSITE_ES = 11;
  59. // Prescription vaccine website with website content in English.
  60. PRESCRIPTION_VACCINE_WEBSITE_EN = 12;
  61. // Prescription vaccine website with website content in Spanish (Sitio de
  62. // vacunas con receta).
  63. PRESCRIPTION_VACCINE_WEBSITE_ES = 13;
  64. }
  65. }