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