smart_campaign_setting.proto 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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.resources;
  16. import "google/api/field_behavior.proto";
  17. import "google/api/resource.proto";
  18. option csharp_namespace = "Google.Ads.GoogleAds.V12.Resources";
  19. option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v12/resources;resources";
  20. option java_multiple_files = true;
  21. option java_outer_classname = "SmartCampaignSettingProto";
  22. option java_package = "com.google.ads.googleads.v12.resources";
  23. option objc_class_prefix = "GAA";
  24. option php_namespace = "Google\\Ads\\GoogleAds\\V12\\Resources";
  25. option ruby_package = "Google::Ads::GoogleAds::V12::Resources";
  26. // Proto file describing the Smart campaign setting resource.
  27. // Settings for configuring Smart campaigns.
  28. message SmartCampaignSetting {
  29. option (google.api.resource) = {
  30. type: "googleads.googleapis.com/SmartCampaignSetting"
  31. pattern: "customers/{customer_id}/smartCampaignSettings/{campaign_id}"
  32. };
  33. // Phone number and country code in smart campaign settings.
  34. message PhoneNumber {
  35. // Phone number of the smart campaign.
  36. optional string phone_number = 1;
  37. // Upper-case, two-letter country code as defined by ISO-3166.
  38. optional string country_code = 2;
  39. }
  40. // Settings for configuring a business profile optimized for ads as this
  41. // campaign's landing page.
  42. message AdOptimizedBusinessProfileSetting {
  43. // Enabling a lead form on your business profile enables prospective
  44. // customers to contact your business by filling out a simple form,
  45. // and you'll receive their information through email.
  46. optional bool include_lead_form = 1;
  47. }
  48. // Immutable. The resource name of the Smart campaign setting.
  49. // Smart campaign setting resource names have the form:
  50. //
  51. // `customers/{customer_id}/smartCampaignSettings/{campaign_id}`
  52. string resource_name = 1 [
  53. (google.api.field_behavior) = IMMUTABLE,
  54. (google.api.resource_reference) = {
  55. type: "googleads.googleapis.com/SmartCampaignSetting"
  56. }
  57. ];
  58. // Output only. The campaign to which these settings apply.
  59. string campaign = 2 [
  60. (google.api.field_behavior) = OUTPUT_ONLY,
  61. (google.api.resource_reference) = {
  62. type: "googleads.googleapis.com/Campaign"
  63. }
  64. ];
  65. // Phone number and country code.
  66. PhoneNumber phone_number = 3;
  67. // The ISO-639-1 language code to advertise in.
  68. string advertising_language_code = 7;
  69. // The landing page of this campaign.
  70. oneof landing_page {
  71. // The user-provided landing page URL for this Campaign.
  72. string final_url = 8;
  73. // Settings for configuring a business profile optimized for ads as this
  74. // campaign's landing page. This campaign must be linked to a business
  75. // profile to use this option. For more information on this feature,
  76. // consult https://support.google.com/google-ads/answer/9827068.
  77. AdOptimizedBusinessProfileSetting ad_optimized_business_profile_setting = 9;
  78. }
  79. // The business setting of this campaign.
  80. oneof business_setting {
  81. // The name of the business.
  82. string business_name = 5;
  83. // The resource name of a Business Profile location.
  84. // Business Profile location resource names can be fetched through the
  85. // Business Profile API and adhere to the following format:
  86. // `locations/{locationId}`.
  87. //
  88. // See the [Business Profile API]
  89. // (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
  90. // for additional details.
  91. string business_profile_location = 10;
  92. }
  93. }