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