Built motion from commit 44377920.|2.6.11
[motion2.git] / legacy-libs / google-proto-files / google / ads / googleads / v1 / enums / feed_item_quality_disapproval_reason.proto
1 // Copyright 2019 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.v1.enums;
19
20 import "google/api/annotations.proto";
21
22 option csharp_namespace = "Google.Ads.GoogleAds.V1.Enums";
23 option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v1/enums;enums";
24 option java_multiple_files = true;
25 option java_outer_classname = "FeedItemQualityDisapprovalReasonProto";
26 option java_package = "com.google.ads.googleads.v1.enums";
27 option objc_class_prefix = "GAA";
28 option php_namespace = "Google\\Ads\\GoogleAds\\V1\\Enums";
29 option ruby_package = "Google::Ads::GoogleAds::V1::Enums";
30 // Proto file describing feed item quality disapproval reasons.
31
32 // Container for enum describing possible quality evaluation disapproval reasons
33 // of a feed item.
34 message FeedItemQualityDisapprovalReasonEnum {
35   // The possible quality evaluation disapproval reasons of a feed item.
36   enum FeedItemQualityDisapprovalReason {
37     // No value has been specified.
38     UNSPECIFIED = 0;
39
40     // Used for return value only. Represents value unknown in this version.
41     UNKNOWN = 1;
42
43     // Price contains repetitive headers.
44     PRICE_TABLE_REPETITIVE_HEADERS = 2;
45
46     // Price contains repetitive description.
47     PRICE_TABLE_REPETITIVE_DESCRIPTION = 3;
48
49     // Price contains inconsistent items.
50     PRICE_TABLE_INCONSISTENT_ROWS = 4;
51
52     // Price contains qualifiers in description.
53     PRICE_DESCRIPTION_HAS_PRICE_QUALIFIERS = 5;
54
55     // Price contains an unsupported language.
56     PRICE_UNSUPPORTED_LANGUAGE = 6;
57
58     // Price item header is not relevant to the price type.
59     PRICE_TABLE_ROW_HEADER_TABLE_TYPE_MISMATCH = 7;
60
61     // Price item header has promotional text.
62     PRICE_TABLE_ROW_HEADER_HAS_PROMOTIONAL_TEXT = 8;
63
64     // Price item description is not relevant to the item header.
65     PRICE_TABLE_ROW_DESCRIPTION_NOT_RELEVANT = 9;
66
67     // Price item description contains promotional text.
68     PRICE_TABLE_ROW_DESCRIPTION_HAS_PROMOTIONAL_TEXT = 10;
69
70     // Price item header and description are repetitive.
71     PRICE_TABLE_ROW_HEADER_DESCRIPTION_REPETITIVE = 11;
72
73     // Price item is in a foreign language, nonsense, or can't be rated.
74     PRICE_TABLE_ROW_UNRATEABLE = 12;
75
76     // Price item price is invalid or inaccurate.
77     PRICE_TABLE_ROW_PRICE_INVALID = 13;
78
79     // Price item URL is invalid or irrelevant.
80     PRICE_TABLE_ROW_URL_INVALID = 14;
81
82     // Price item header or description has price.
83     PRICE_HEADER_OR_DESCRIPTION_HAS_PRICE = 15;
84
85     // Structured snippet values do not match the header.
86     STRUCTURED_SNIPPETS_HEADER_POLICY_VIOLATED = 16;
87
88     // Structured snippet values are repeated.
89     STRUCTURED_SNIPPETS_REPEATED_VALUES = 17;
90
91     // Structured snippet values violate editorial guidelines like punctuation.
92     STRUCTURED_SNIPPETS_EDITORIAL_GUIDELINES = 18;
93
94     // Structured snippet contain promotional text.
95     STRUCTURED_SNIPPETS_HAS_PROMOTIONAL_TEXT = 19;
96   }
97
98
99 }