evandcoleman/node-appletv

View on GitHub
src/lib/protos/NotificationMessage.proto

Summary

Maintainability
Test Coverage
syntax = "proto2";

import "ProtocolMessage.proto";
import "PlayerPath.proto";

extend ProtocolMessage {
  optional NotificationMessage notificationMessage = 16;
}

message NotificationMessage {
  repeated string notification = 1;
  repeated bytes userInfos = 2;
  repeated PlayerPath playerPaths = 3;
}