affiliate_location_placeholder_field.proto 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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 = "AffiliateLocationPlaceholderFieldProto";
  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 Affiliate Location placeholder fields.
  25. // Values for Affiliate Location placeholder fields.
  26. message AffiliateLocationPlaceholderFieldEnum {
  27. // Possible values for Affiliate Location placeholder fields.
  28. enum AffiliateLocationPlaceholderField {
  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 name of the business.
  34. BUSINESS_NAME = 2;
  35. // Data Type: STRING. Line 1 of the business address.
  36. ADDRESS_LINE_1 = 3;
  37. // Data Type: STRING. Line 2 of the business address.
  38. ADDRESS_LINE_2 = 4;
  39. // Data Type: STRING. City of the business address.
  40. CITY = 5;
  41. // Data Type: STRING. Province of the business address.
  42. PROVINCE = 6;
  43. // Data Type: STRING. Postal code of the business address.
  44. POSTAL_CODE = 7;
  45. // Data Type: STRING. Country code of the business address.
  46. COUNTRY_CODE = 8;
  47. // Data Type: STRING. Phone number of the business.
  48. PHONE_NUMBER = 9;
  49. // Data Type: STRING. Language code of the business.
  50. LANGUAGE_CODE = 10;
  51. // Data Type: INT64. ID of the chain.
  52. CHAIN_ID = 11;
  53. // Data Type: STRING. Name of the chain.
  54. CHAIN_NAME = 12;
  55. }
  56. }