Built motion from commit 44377920.|2.6.11
[motion2.git] / legacy-libs / google-proto-files / google / ads / googleads / v0 / enums / customer_match_upload_key_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 = "CustomerMatchUploadKeyTypeProto";
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 // Indicates what type of data are the user list's members matched from.
30 message CustomerMatchUploadKeyTypeEnum {
31   // Enum describing possible customer match upload key types.
32   enum CustomerMatchUploadKeyType {
33     // Not specified.
34     UNSPECIFIED = 0;
35
36     // Used for return value only. Represents value unknown in this version.
37     UNKNOWN = 1;
38
39     // Members are matched from customer info such as email address, phone
40     // number or physical address.
41     CONTACT_INFO = 2;
42
43     // Members are matched from a user id generated and assigned by the
44     // advertiser.
45     CRM_ID = 3;
46
47     // Members are matched from mobile advertising ids.
48     MOBILE_ADVERTISING_ID = 4;
49   }
50 }