1// Copyright 2023 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 15syntax = "proto3"; 16 17package google.ads.googleads.v16.enums; 18 19option csharp_namespace = "Google.Ads.GoogleAds.V16.Enums"; 20option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v16/enums;enums"; 21option java_multiple_files = true; 22option java_outer_classname = "UserListSizeRangeProto"; 23option java_package = "com.google.ads.googleads.v16.enums"; 24option objc_class_prefix = "GAA"; 25option php_namespace = "Google\\Ads\\GoogleAds\\V16\\Enums"; 26option ruby_package = "Google::Ads::GoogleAds::V16::Enums"; 27 28// Proto file describing user list size range. 29 30// Size range in terms of number of users of a UserList. 31message UserListSizeRangeEnum { 32 // Enum containing possible user list size ranges. 33 enum UserListSizeRange { 34 // Not specified. 35 UNSPECIFIED = 0; 36 37 // Used for return value only. Represents value unknown in this version. 38 UNKNOWN = 1; 39 40 // User list has less than 500 users. 41 LESS_THAN_FIVE_HUNDRED = 2; 42 43 // User list has number of users in range of 500 to 1000. 44 LESS_THAN_ONE_THOUSAND = 3; 45 46 // User list has number of users in range of 1000 to 10000. 47 ONE_THOUSAND_TO_TEN_THOUSAND = 4; 48 49 // User list has number of users in range of 10000 to 50000. 50 TEN_THOUSAND_TO_FIFTY_THOUSAND = 5; 51 52 // User list has number of users in range of 50000 to 100000. 53 FIFTY_THOUSAND_TO_ONE_HUNDRED_THOUSAND = 6; 54 55 // User list has number of users in range of 100000 to 300000. 56 ONE_HUNDRED_THOUSAND_TO_THREE_HUNDRED_THOUSAND = 7; 57 58 // User list has number of users in range of 300000 to 500000. 59 THREE_HUNDRED_THOUSAND_TO_FIVE_HUNDRED_THOUSAND = 8; 60 61 // User list has number of users in range of 500000 to 1 million. 62 FIVE_HUNDRED_THOUSAND_TO_ONE_MILLION = 9; 63 64 // User list has number of users in range of 1 to 2 millions. 65 ONE_MILLION_TO_TWO_MILLION = 10; 66 67 // User list has number of users in range of 2 to 3 millions. 68 TWO_MILLION_TO_THREE_MILLION = 11; 69 70 // User list has number of users in range of 3 to 5 millions. 71 THREE_MILLION_TO_FIVE_MILLION = 12; 72 73 // User list has number of users in range of 5 to 10 millions. 74 FIVE_MILLION_TO_TEN_MILLION = 13; 75 76 // User list has number of users in range of 10 to 20 millions. 77 TEN_MILLION_TO_TWENTY_MILLION = 14; 78 79 // User list has number of users in range of 20 to 30 millions. 80 TWENTY_MILLION_TO_THIRTY_MILLION = 15; 81 82 // User list has number of users in range of 30 to 50 millions. 83 THIRTY_MILLION_TO_FIFTY_MILLION = 16; 84 85 // User list has over 50 million users. 86 OVER_FIFTY_MILLION = 17; 87 } 88} 89