conversion_action_error.proto 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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.errors;
  16. option csharp_namespace = "Google.Ads.GoogleAds.V12.Errors";
  17. option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v12/errors;errors";
  18. option java_multiple_files = true;
  19. option java_outer_classname = "ConversionActionErrorProto";
  20. option java_package = "com.google.ads.googleads.v12.errors";
  21. option objc_class_prefix = "GAA";
  22. option php_namespace = "Google\\Ads\\GoogleAds\\V12\\Errors";
  23. option ruby_package = "Google::Ads::GoogleAds::V12::Errors";
  24. // Proto file describing conversion action errors.
  25. // Container for enum describing possible conversion action errors.
  26. message ConversionActionErrorEnum {
  27. // Enum describing possible conversion action errors.
  28. enum ConversionActionError {
  29. // Enum unspecified.
  30. UNSPECIFIED = 0;
  31. // The received error code is not known in this version.
  32. UNKNOWN = 1;
  33. // The specified conversion action name already exists.
  34. DUPLICATE_NAME = 2;
  35. // Another conversion action with the specified app id already exists.
  36. DUPLICATE_APP_ID = 3;
  37. // Android first open action conflicts with Google play codeless download
  38. // action tracking the same app.
  39. TWO_CONVERSION_ACTIONS_BIDDING_ON_SAME_APP_DOWNLOAD = 4;
  40. // Android first open action conflicts with Google play codeless download
  41. // action tracking the same app.
  42. BIDDING_ON_SAME_APP_DOWNLOAD_AS_GLOBAL_ACTION = 5;
  43. // The attribution model cannot be set to DATA_DRIVEN because a data-driven
  44. // model has never been generated.
  45. DATA_DRIVEN_MODEL_WAS_NEVER_GENERATED = 6;
  46. // The attribution model cannot be set to DATA_DRIVEN because the
  47. // data-driven model is expired.
  48. DATA_DRIVEN_MODEL_EXPIRED = 7;
  49. // The attribution model cannot be set to DATA_DRIVEN because the
  50. // data-driven model is stale.
  51. DATA_DRIVEN_MODEL_STALE = 8;
  52. // The attribution model cannot be set to DATA_DRIVEN because the
  53. // data-driven model is unavailable or the conversion action was newly
  54. // added.
  55. DATA_DRIVEN_MODEL_UNKNOWN = 9;
  56. // Creation of this conversion action type isn't supported by Google
  57. // Ads API.
  58. CREATION_NOT_SUPPORTED = 10;
  59. // Update of this conversion action isn't supported by Google Ads API.
  60. UPDATE_NOT_SUPPORTED = 11;
  61. }
  62. }