aboutsummaryrefslogtreecommitdiff
path: root/google/ads/googleads/v0/errors/campaign_criterion_error.proto
blob: 03cbeab693e960aa141679b82dd74c50c41b501e (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
// 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.


// Proto file describing campaign criterion errors.
syntax = "proto3";

package google.ads.googleads.v0.errors;

option java_package = "com.google.ads.googleads.v0.errors";
option java_outer_classname = "CampaignCriterionErrorProto";
option java_multiple_files = true;

// Objective-C prefix. Google Ads API.
option objc_class_prefix = "GAA";
option csharp_namespace = "Google.Ads.GoogleAds.V0.Errors";
option php_namespace = "Google\\Ads\\GoogleAds\\V0\\Errors";
option php_metadata_namespace = "Google\\Ads\\GoogleAds\\V0\\Errors";

// Container for enum describing possible campaign criterion errors.
message CampaignCriterionErrorEnum {

  // Enum describing possible campaign criterion errors.
  enum CampaignCriterionError {
    // Enum unspecified.
    UNSPECIFIED = 0;
    // The received error code is not known in this version.
    UNKNOWN = 1;
    // Concrete type of criterion (keyword v.s. placement) is required for
    // CREATE and UPDATE operations.
    CONCRETE_TYPE_REQUIRED = 2;
    // Invalid placement URL.
    INVALID_PLACEMENT_URL = 3;
    // Criteria type can not be excluded for the campaign by the customer. like
    // AOL account type cannot target site type criteria
    CANNOT_EXCLUDE_CRITERIA_TYPE = 4;
    // Cannot set the campaign criterion status for this criteria type.
    CANNOT_SET_STATUS_FOR_CRITERIA_TYPE = 5;
    // Cannot set the campaign criterion status for an excluded criteria.
    CANNOT_SET_STATUS_FOR_EXCLUDED_CRITERIA = 6;
    // Cannot target and exclude the same criterion.
    CANNOT_TARGET_AND_EXCLUDE = 7;
    // The mutate contained too many operations.
    TOO_MANY_OPERATIONS = 8;
    // This operator cannot be applied to a criterion of this type.
    OPERATOR_NOT_SUPPORTED_FOR_CRITERION_TYPE = 9;
    // The Shopping campaign sales country is not supported for
    // ProductSalesChannel targeting.
    SHOPPING_CAMPAIGN_SALES_COUNTRY_NOT_SUPPORTED_FOR_SALES_CHANNEL = 10;
    // The existing field can't be updated with CREATE operation. It can be
    // updated with UPDATE operation only.
    CANNOT_ADD_EXISTING_FIELD = 11;
  }
}