-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathuserFeedback.proto
40 lines (32 loc) · 1022 Bytes
/
userFeedback.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
syntax = "proto3";
package rv.data;
message UserFeedback {
message ApplicationMetadata {
string application_version = 1;
string os_version = 2;
repeated rv.data.UserFeedback.ApplicationMetadata.ApplicationInstance application_instances = 3;
repeated rv.data.UserFeedback.ApplicationMetadata.ApplicationInstance blackmagic_desktop_video_instances = 4;
repeated rv.data.UserFeedback.ApplicationMetadata.Screen screens = 5;
bool crash_reporting_enabled = 6;
bool analytics_reporting_enabled = 7;
message ApplicationInstance {
string path = 1;
string version = 2;
}
message Screen {
string name = 1;
rv.data.UserFeedback.ApplicationMetadata.Screen.Resolution resolution = 2;
enum Type {
UNKNOWN = 0;
AUDIENCE = 1;
STAGE = 2;
}
Type type = 3;
string output_name = 4;
message Resolution {
uint32 width = 1;
uint32 height = 2;
}
}
}
}