OLD | NEW |
1 // Copyright 2009 Google Inc. All Rights Reserved. | 1 // Copyright 2009 Google Inc. All Rights Reserved. |
2 // Author: morgwai@google.com (Morgwai Kotarbinski) | 2 // Author: morgwai@google.com (Morgwai Kotarbinski) |
3 // | 3 // |
4 // Basic messages used by all systems (extension, feedbackserver, | 4 // Basic messages used by all systems (extension, feedbackserver, |
5 // silver-bullet clustering, android etc). | 5 // silver-bullet clustering, android etc). |
6 | 6 |
7 syntax = "proto2"; | 7 syntax = "proto2"; |
8 | 8 |
9 package userfeedback; | 9 package userfeedback; |
10 | 10 |
11 // Data present in all kinds of feedbacks, regardless of source (Web, Android, | 11 // Data present in all kinds of feedbacks, regardless of source (Web, Android, |
12 // other). | 12 // other). |
13 message CommonData { | 13 message CommonData { |
14 optional fixed64 gaia_id = 1; | 14 optional fixed64 gaia_id = 1; |
15 | 15 |
16 // Description of the problem entered by user. | 16 // Description of the problem entered by user. |
17 optional string description = 2; | 17 optional string description = 2; |
18 optional string description_translated = 4; | 18 optional string description_translated = 4; |
19 optional string source_descripton_language = 5 [ default = "en" ]; | 19 optional string source_description_language = 5 [ default = "en" ]; |
| 20 optional string ui_language = 6 [ default = "en_US" ]; |
20 | 21 |
21 optional string user_email = 3; | 22 optional string user_email = 3; |
| 23 |
| 24 // Unique identifier of feedback report. If set than only one report |
| 25 // with the same identifier is stored in the system. |
| 26 // If you are not sure how to use it leave it not set. |
| 27 optional string unique_report_identifier = 7; |
22 }; | 28 }; |
OLD | NEW |