resources.proto 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. // Copyright 2020 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.playablelocations.v3;
  16. import "google/api/field_behavior.proto";
  17. option csharp_namespace = "Google.Maps.PlayableLocations.V3";
  18. option go_package = "google.golang.org/genproto/googleapis/maps/playablelocations/v3;playablelocations";
  19. option java_multiple_files = true;
  20. option java_outer_classname = "ResourcesProto";
  21. option java_package = "com.google.maps.playablelocations.v3";
  22. option php_namespace = "Google\\Maps\\PlayableLocations\\V3";
  23. option objc_class_prefix = "GMPL";
  24. // A report submitted by a player about a playable location that is considered
  25. // inappropriate for use in the game.
  26. message PlayerReport {
  27. // The reason why the playable location is considered bad.
  28. enum BadLocationReason {
  29. // Unspecified reason. Do not use.
  30. BAD_LOCATION_REASON_UNSPECIFIED = 0;
  31. // The reason isn't one of the reasons in this enumeration.
  32. OTHER = 1;
  33. // The playable location isn't accessible to pedestrians. For example, if
  34. // it's in the middle of a highway.
  35. NOT_PEDESTRIAN_ACCESSIBLE = 2;
  36. // The playable location isn't open to the public. For example, a private
  37. // office building.
  38. NOT_OPEN_TO_PUBLIC = 4;
  39. // The playable location is permanently closed. For example, when a business
  40. // has been shut down.
  41. PERMANENTLY_CLOSED = 5;
  42. // The playable location is temporarily inaccessible. For example, when a
  43. // business has closed for renovations.
  44. TEMPORARILY_INACCESSIBLE = 6;
  45. }
  46. // Required. The name of the playable location.
  47. string location_name = 1 [(google.api.field_behavior) = REQUIRED];
  48. // Required. One or more reasons why this playable location is considered bad.
  49. repeated BadLocationReason reasons = 2
  50. [(google.api.field_behavior) = REQUIRED];
  51. // Required. A free-form description detailing why the playable location is
  52. // considered bad.
  53. string reason_details = 3 [(google.api.field_behavior) = REQUIRED];
  54. // Language code (in BCP-47 format) indicating the language of the freeform
  55. // description provided in `reason_details`. Examples are "en", "en-US" or
  56. // "ja-Latn". For more information, see
  57. // http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
  58. string language_code = 4;
  59. }
  60. // Encapsulates impression event details.
  61. message Impression {
  62. // The type of impression event.
  63. enum ImpressionType {
  64. // Unspecified type. Do not use.
  65. IMPRESSION_TYPE_UNSPECIFIED = 0;
  66. // The playable location was presented to a player.
  67. PRESENTED = 1;
  68. // A player interacted with the playable location.
  69. INTERACTED = 2;
  70. }
  71. // Required. The name of the playable location.
  72. string location_name = 1 [(google.api.field_behavior) = REQUIRED];
  73. // Required. The type of impression event.
  74. ImpressionType impression_type = 2 [(google.api.field_behavior) = REQUIRED];
  75. // An arbitrary, developer-defined type identifier for each type of game
  76. // object used in your game.
  77. //
  78. // Since players interact with differ types of game objects in different ways,
  79. // this field allows you to segregate impression data by type for analysis.
  80. //
  81. // You should assign a unique `game_object_type` ID to represent a distinct
  82. // type of game object in your game.
  83. //
  84. // For example, 1=monster location, 2=powerup location.
  85. int32 game_object_type = 4;
  86. }