|
| 1 | +// Copyright 2025 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 | +syntax = "proto3"; |
| 16 | + |
| 17 | +package google.ads.datamanager.v1; |
| 18 | + |
| 19 | +option csharp_namespace = "Google.Ads.DataManager.V1"; |
| 20 | +option go_package = "google.golang.org/genproto/googleapis/ads/datamanager/v1;datamanager"; |
| 21 | +option java_multiple_files = true; |
| 22 | +option java_outer_classname = "MatchRateProto"; |
| 23 | +option java_package = "com.google.ads.datamanager.v1"; |
| 24 | +option php_namespace = "Google\\Ads\\DataManager\\V1"; |
| 25 | +option ruby_package = "Google::Ads::DataManager::V1"; |
| 26 | + |
| 27 | +// The match rate range of the upload or userlist. |
| 28 | +enum MatchRateRange { |
| 29 | + // The match rate range is unknown. |
| 30 | + MATCH_RATE_RANGE_UNKNOWN = 0; |
| 31 | + |
| 32 | + // The match rate range is not eligible. |
| 33 | + MATCH_RATE_RANGE_NOT_ELIGIBLE = 1; |
| 34 | + |
| 35 | + // The match rate range is less than 20% (in the interval `[0, 20)`). |
| 36 | + MATCH_RATE_RANGE_LESS_THAN_20 = 2; |
| 37 | + |
| 38 | + // The match rate range is between 20% and 30% (in the interval `[20, 31)`). |
| 39 | + MATCH_RATE_RANGE_20_TO_30 = 3; |
| 40 | + |
| 41 | + // The match rate range is between 31% and 40% (in the interval `[31, 41)`). |
| 42 | + MATCH_RATE_RANGE_31_TO_40 = 4; |
| 43 | + |
| 44 | + // The match rate range is between 41% and 50% (in the interval `[41, 51)`). |
| 45 | + MATCH_RATE_RANGE_41_TO_50 = 5; |
| 46 | + |
| 47 | + // The match rate range is between 51% and 60% (in the interval `[51, 61)`. |
| 48 | + MATCH_RATE_RANGE_51_TO_60 = 6; |
| 49 | + |
| 50 | + // The match rate range is between 61% and 70% (in the interval `[61, 71)`). |
| 51 | + MATCH_RATE_RANGE_61_TO_70 = 7; |
| 52 | + |
| 53 | + // The match rate range is between 71% and 80% (in the interval `[71, 81)`). |
| 54 | + MATCH_RATE_RANGE_71_TO_80 = 8; |
| 55 | + |
| 56 | + // The match rate range is between 81% and 90% (in the interval `[81, 91)`). |
| 57 | + MATCH_RATE_RANGE_81_TO_90 = 9; |
| 58 | + |
| 59 | + // The match rate range is between 91% and 100% (in the interval `[91, |
| 60 | + // 100]`). |
| 61 | + MATCH_RATE_RANGE_91_TO_100 = 10; |
| 62 | +} |
0 commit comments