1// Copyright 2022 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.maps.regionlookup.v1alpha; 18 19option cc_enable_arenas = true; 20option csharp_namespace = "Google.Maps.RegionLookup.V1Alpha"; 21option go_package = "cloud.google.com/go/maps/regionlookup/apiv1alpha/regionlookuppb;regionlookuppb"; 22option java_multiple_files = true; 23option java_outer_classname = "RegionMatchProto"; 24option java_package = "com.google.maps.regionlookup.v1alpha"; 25option objc_class_prefix = "MRLV1A"; 26option php_namespace = "Google\\Maps\\RegionLookup\\V1alpha"; 27 28// Region Match. 29// 30// Next available tag: 5 31message RegionMatch { 32 // Place ID of the region that is matched. If region is found, this field is 33 // not set. 34 string matched_place_id = 1; 35 36 // Region candidate IDs. Up to three candidates may be returned. 37 repeated string candidate_place_ids = 2; 38 39 // Matching debug information for when no match is found. 40 string debug_info = 3; 41} 42