23 lines
420 B
Protocol Buffer
Executable file
23 lines
420 B
Protocol Buffer
Executable file
syntax = "proto3";
|
|
|
|
package rv.analytics;
|
|
|
|
option cc_enable_arenas = true;
|
|
option csharp_namespace = "Pro.SerializationInterop.RVProtoData.Analytics";
|
|
option swift_prefix = "Analytics_";
|
|
|
|
message ProContent {
|
|
message ViewMediaBin {
|
|
}
|
|
|
|
message Download {
|
|
bool is_retry = 1;
|
|
}
|
|
|
|
oneof Event {
|
|
.rv.analytics.ProContent.ViewMediaBin media_bin = 1;
|
|
.rv.analytics.ProContent.Download download = 2;
|
|
}
|
|
}
|
|
|