aboutsummaryrefslogtreecommitdiff
path: root/google/ads/googleads/v0/errors/bidding_error.proto
blob: 1d9b67cd776813463be1e81ffddf36aeaa7c8786 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
// Copyright 2018 Google LLC.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//

syntax = "proto3";

package google.ads.googleads.v0.errors;

option csharp_namespace = "Google.Ads.GoogleAds.V0.Errors";
option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v0/errors;errors";
option java_multiple_files = true;
option java_outer_classname = "BiddingErrorProto";
option java_package = "com.google.ads.googleads.v0.errors";
option objc_class_prefix = "GAA";
option php_namespace = "Google\\Ads\\GoogleAds\\V0\\Errors";
// Proto file describing bidding errors.

// Container for enum describing possible bidding errors.
message BiddingErrorEnum {
  // Enum describing possible bidding errors.
  enum BiddingError {
    // Enum unspecified.
    UNSPECIFIED = 0;

    // The received error code is not known in this version.
    UNKNOWN = 1;

    // Cannot transition to new bidding strategy.
    BIDDING_STRATEGY_TRANSITION_NOT_ALLOWED = 2;

    // Cannot attach bidding strategy to campaign.
    CANNOT_ATTACH_BIDDING_STRATEGY_TO_CAMPAIGN = 7;

    // Bidding strategy is not supported or cannot be used as anonymous.
    INVALID_ANONYMOUS_BIDDING_STRATEGY_TYPE = 10;

    // The type does not match the named strategy's type.
    INVALID_BIDDING_STRATEGY_TYPE = 14;

    // The bid is invalid.
    INVALID_BID = 17;

    // Bidding strategy is not available for the account type.
    BIDDING_STRATEGY_NOT_AVAILABLE_FOR_ACCOUNT_TYPE = 18;

    // Conversion tracking is not enabled for the campaign for VBB transition.
    CONVERSION_TRACKING_NOT_ENABLED = 19;

    // Not enough conversions tracked for VBB transitions.
    NOT_ENOUGH_CONVERSIONS = 20;

    // Campaign can not be created with given bidding strategy. It can be
    // transitioned to the strategy, once eligible.
    CANNOT_CREATE_CAMPAIGN_WITH_BIDDING_STRATEGY = 21;

    // Cannot target content network only as campaign uses Page One Promoted
    // bidding strategy.
    CANNOT_TARGET_CONTENT_NETWORK_ONLY_WITH_CAMPAIGN_LEVEL_POP_BIDDING_STRATEGY = 23;

    // Budget Optimizer and Target Spend bidding strategies are not supported
    // for campaigns with AdSchedule targeting.
    BIDDING_STRATEGY_NOT_SUPPORTED_WITH_AD_SCHEDULE = 24;

    // Pay per conversion is not available to all the customer, only few
    // whitelisted customers can use this.
    PAY_PER_CONVERSION_NOT_AVAILABLE_FOR_CUSTOMER = 25;

    // Pay per conversion is not allowed with Target CPA.
    PAY_PER_CONVERSION_NOT_ALLOWED_WITH_TARGET_CPA = 26;

    // Cannot set bidding strategy to Manual CPM for search network only
    // campaigns.
    BIDDING_STRATEGY_NOT_ALLOWED_FOR_SEARCH_ONLY_CAMPAIGNS = 27;

    // The bidding strategy is not supported for use in drafts or experiments.
    BIDDING_STRATEGY_NOT_SUPPORTED_IN_DRAFTS_OR_EXPERIMENTS = 28;

    // Bidding strategy type does not support product type ad group criterion.
    BIDDING_STRATEGY_TYPE_DOES_NOT_SUPPORT_PRODUCT_TYPE_ADGROUP_CRITERION = 29;

    // Bid amount is too small.
    BID_TOO_SMALL = 30;

    // Bid amount is too big.
    BID_TOO_BIG = 31;

    // Bid has too many fractional digit precision.
    BID_TOO_MANY_FRACTIONAL_DIGITS = 32;

    // Invalid domain name specified.
    INVALID_DOMAIN_NAME = 33;
  }


}