toll_passes.proto 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. // Copyright 2021 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. syntax = "proto3";
  15. package google.maps.routes.v1;
  16. option cc_enable_arenas = true;
  17. option csharp_namespace = "Google.Maps.Routes.V1";
  18. option go_package = "google.golang.org/genproto/googleapis/maps/routes/v1;routes";
  19. option java_multiple_files = true;
  20. option java_outer_classname = "TollPassesProto";
  21. option java_package = "com.google.maps.routes.v1";
  22. option objc_class_prefix = "GMRS";
  23. option php_namespace = "Google\\Maps\\Routes\\V1";
  24. // List of toll passes around the world that we support.
  25. enum TollPass {
  26. // Not used. If this value is used, then the request fails.
  27. TOLL_PASS_UNSPECIFIED = 0;
  28. // Australia-wide toll pass.
  29. // See additional details at https://www.linkt.com.au/.
  30. AU_LINKT = 2;
  31. // Argentina toll pass. See additional details at https://telepase.com.ar
  32. AR_TELEPASE = 3;
  33. // Brazil toll pass. See additional details at https://conectcar.com.
  34. BR_CONECTCAR = 7;
  35. // Brazil toll pass. See additional details at https://movemais.com.
  36. BR_MOVE_MAIS = 8;
  37. // Brazil toll pass. See additional details at https://www.semparar.com.br.
  38. BR_SEM_PARAR = 9;
  39. // Brazil toll pass. See additional details at https://taggy.com.br.
  40. BR_TAGGY = 10;
  41. // Brazil toll pass. See additional details at
  42. // https://veloe.com.br/site/onde-usar.
  43. BR_VELOE = 11;
  44. // Mexico toll pass.
  45. MX_TAG_IAVE = 12;
  46. // Mexico toll pass company. One of many operating in Mexico City. See
  47. // additional details at https://www.televia.com.mx.
  48. MX_TAG_TELEVIA = 13;
  49. // Mexico toll pass. See additional details at
  50. // https://www.viapass.com.mx/viapass/web_home.aspx.
  51. MX_VIAPASS = 14;
  52. // State pass of California, United States. Passes vary between Standard,
  53. // Flex, and Clean Air. Flex and Clean Air have settings for carpool. See
  54. // additional details at https://www.bayareafastrak.org/en/home/index.shtml.
  55. US_CA_FASTRAK = 4;
  56. // State pass of Illinois, United States. See additional details at
  57. // https://www.illinoistollway.com/about-ipass.
  58. US_IL_IPASS = 5;
  59. // State pass of Massachusetts, United States. See additional details at
  60. // https://www.mass.gov/ezdrivema.
  61. US_MA_EZPASSMA = 6;
  62. // State pass of New York, United States. See additional details at
  63. // https://www.e-zpassny.com.
  64. US_NY_EZPASSNY = 15;
  65. // State pass of the Washington state, United States.
  66. US_WA_GOOD_TO_GO = 1;
  67. }