smart_campaign_setting.proto 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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.resources;
  16. import "google/api/field_behavior.proto";
  17. import "google/api/resource.proto";
  18. option csharp_namespace = "Google.Ads.GoogleAds.V10.Resources";
  19. option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v10/resources;resources";
  20. option java_multiple_files = true;
  21. option java_outer_classname = "SmartCampaignSettingProto";
  22. option java_package = "com.google.ads.googleads.v10.resources";
  23. option objc_class_prefix = "GAA";
  24. option php_namespace = "Google\\Ads\\GoogleAds\\V10\\Resources";
  25. option ruby_package = "Google::Ads::GoogleAds::V10::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. // Immutable. The resource name of the Smart campaign setting.
  41. // Smart campaign setting resource names have the form:
  42. //
  43. // `customers/{customer_id}/smartCampaignSettings/{campaign_id}`
  44. string resource_name = 1 [
  45. (google.api.field_behavior) = IMMUTABLE,
  46. (google.api.resource_reference) = {
  47. type: "googleads.googleapis.com/SmartCampaignSetting"
  48. }
  49. ];
  50. // Output only. The campaign to which these settings apply.
  51. string campaign = 2 [
  52. (google.api.field_behavior) = OUTPUT_ONLY,
  53. (google.api.resource_reference) = {
  54. type: "googleads.googleapis.com/Campaign"
  55. }
  56. ];
  57. // Phone number and country code.
  58. PhoneNumber phone_number = 3;
  59. // Landing page url given by user for this Campaign.
  60. string final_url = 4;
  61. // The ISO-639-1 language code to advertise in.
  62. string advertising_language_code = 7;
  63. // The business setting of this campaign.
  64. oneof business_setting {
  65. // The name of the business.
  66. string business_name = 5;
  67. // The ID of the Business Profile location.
  68. // The location ID can be fetched by Business Profile API with its form:
  69. // accounts/{accountId}/locations/{locationId}. The last {locationId}
  70. // component from the Business Profile API represents the
  71. // business_location_id. See the [Business Profile API]
  72. // (https://developers.google.com/my-business/reference/rest/v4/accounts.locations)
  73. int64 business_location_id = 6;
  74. }
  75. }