Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / google-proto-files / google / ads / googleads / v0 / enums / google_ads_field_data_type.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 = "GoogleAdsFieldDataTypeProto";
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 GoogleAdsField data types
30
31 // Container holding the various data types.
32 message GoogleAdsFieldDataTypeEnum {
33   // These are the various types a GoogleAdsService artifact may take on.
34   enum GoogleAdsFieldDataType {
35     // Unspecified
36     UNSPECIFIED = 0;
37
38     // Unknown
39     UNKNOWN = 1;
40
41     // Maps to google.protobuf.BoolValue
42     //
43     // Applicable operators:  =, !=
44     BOOLEAN = 2;
45
46     // Maps to google.protobuf.StringValue. It can be compared using the set of
47     // operators specific to dates however.
48     //
49     // Applicable operators:  =, <, >, <=, >=, BETWEEN, DURING, and IN
50     DATE = 3;
51
52     // Maps to google.protobuf.DoubleValue
53     //
54     // Applicable operators:  =, !=, <, >, IN, NOT IN
55     DOUBLE = 4;
56
57     // Maps to an enum. It's specific definition can be found at type_url.
58     //
59     // Applicable operators:  =, !=, IN, NOT IN
60     ENUM = 5;
61
62     // Maps to google.protobuf.FloatValue
63     //
64     // Applicable operators:  =, !=, <, >, IN, NOT IN
65     FLOAT = 6;
66
67     // Maps to google.protobuf.Int32Value
68     //
69     // Applicable operators:  =, !=, <, >, <=, >=, BETWEEN, IN, NOT IN
70     INT32 = 7;
71
72     // Maps to google.protobuf.Int64Value
73     //
74     // Applicable operators:  =, !=, <, >, <=, >=, BETWEEN, IN, NOT IN
75     INT64 = 8;
76
77     // Maps to a protocol buffer message type. The data type's details can be
78     // found in type_url.
79     //
80     // No operators work with MESSAGE fields.
81     MESSAGE = 9;
82
83     // Maps to google.protobuf.StringValue. Represents the resource name
84     // (unique id) of a resource or one of its foreign keys.
85     //
86     // No operators work with RESOURCE_NAME fields.
87     RESOURCE_NAME = 10;
88
89     // Maps to google.protobuf.StringValue.
90     //
91     // Applicable operators:  =, !=, LIKE, NOT LIKE, IN, NOT IN
92     STRING = 11;
93   }
94 }