customizer_value.proto 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.common;
  16. import "google/ads/googleads/v11/enums/customizer_attribute_type.proto";
  17. import "google/api/field_behavior.proto";
  18. option csharp_namespace = "Google.Ads.GoogleAds.V11.Common";
  19. option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v11/common;common";
  20. option java_multiple_files = true;
  21. option java_outer_classname = "CustomizerValueProto";
  22. option java_package = "com.google.ads.googleads.v11.common";
  23. option objc_class_prefix = "GAA";
  24. option php_namespace = "Google\\Ads\\GoogleAds\\V11\\Common";
  25. option ruby_package = "Google::Ads::GoogleAds::V11::Common";
  26. // Proto file describing common customizer value proto messages.
  27. // A customizer value that is referenced in customizer linkage entities
  28. // like CustomerCustomizer, CampaignCustomizer, etc.
  29. message CustomizerValue {
  30. // Required. The data type for the customizer value. It must match the attribute type.
  31. // The string_value content must match the constraints associated with the
  32. // type.
  33. google.ads.googleads.v11.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType type = 1 [(google.api.field_behavior) = REQUIRED];
  34. // Required. Value to insert in creative text. Customizer values of all types are stored
  35. // as string to make formatting unambiguous.
  36. string string_value = 2 [(google.api.field_behavior) = REQUIRED];
  37. }