Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / google-proto-files / google / ads / googleads / v0 / errors / keyword_plan_error.proto
1 // Copyright 2018 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 //
15
16 syntax = "proto3";
17
18 package google.ads.googleads.v0.errors;
19
20 option csharp_namespace = "Google.Ads.GoogleAds.V0.Errors";
21 option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v0/errors;errors";
22 option java_multiple_files = true;
23 option java_outer_classname = "KeywordPlanErrorProto";
24 option java_package = "com.google.ads.googleads.v0.errors";
25 option objc_class_prefix = "GAA";
26 option php_namespace = "Google\\Ads\\GoogleAds\\V0\\Errors";
27 option ruby_package = "Google::Ads::GoogleAds::V0::Errors";
28
29 // Proto file describing errors from applying keyword plan resources (keyword
30 // plan, keyword plan campaign, keyword plan ad group or keyword plan keyword)
31 // or KeywordPlanService RPC.
32
33 // Container for enum describing possible errors from applying a keyword plan
34 // resource (keyword plan, keyword plan campaign, keyword plan ad group or
35 // keyword plan keyword) or KeywordPlanService RPC.
36 message KeywordPlanErrorEnum {
37   // Enum describing possible errors from applying a keyword plan.
38   enum KeywordPlanError {
39     // Enum unspecified.
40     UNSPECIFIED = 0;
41
42     // The received error code is not known in this version.
43     UNKNOWN = 1;
44
45     // The plan's bid multiplier value is outside the valid range.
46     BID_MULTIPLIER_OUT_OF_RANGE = 2;
47
48     // The plan's bid value is too high.
49     BID_TOO_HIGH = 3;
50
51     // The plan's bid value is too low.
52     BID_TOO_LOW = 4;
53
54     // The plan's cpc bid is not a multiple of the minimum billable unit.
55     BID_TOO_MANY_FRACTIONAL_DIGITS = 5;
56
57     // The plan's daily budget value is too low.
58     DAILY_BUDGET_TOO_LOW = 6;
59
60     // The plan's daily budget is not a multiple of the minimum billable unit.
61     DAILY_BUDGET_TOO_MANY_FRACTIONAL_DIGITS = 7;
62
63     // The input has an invalid value.
64     INVALID_VALUE = 8;
65
66     // The plan has no keyword.
67     KEYWORD_PLAN_HAS_NO_KEYWORDS = 9;
68
69     // The plan is not enabled and API cannot provide mutation, forecast or
70     // stats.
71     KEYWORD_PLAN_NOT_ENABLED = 10;
72
73     // The requested plan cannot be found for providing forecast or stats.
74     KEYWORD_PLAN_NOT_FOUND = 11;
75
76     // The plan is missing a cpc bid.
77     MISSING_BID = 13;
78
79     // The plan is missing required forecast_period field.
80     MISSING_FORECAST_PERIOD = 14;
81
82     // The plan's forecast_period has invalid forecast date range.
83     INVALID_FORECAST_DATE_RANGE = 15;
84
85     // The plan's name is invalid.
86     INVALID_NAME = 16;
87   }
88 }