evandcoleman/node-appletv

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

Summary

Maintainability
Test Coverage
syntax = "proto2";

import "ContentItem.proto";
import "PlaybackQueueContext.proto";
import "PlayerPath.proto";

message PlaybackQueue {
  optional int32 location = 1;
  repeated ContentItem contentItems = 2;
  optional PlaybackQueueContext context = 3;
  optional string requestId = 4;
  optional PlayerPath resolvedPlayerPath = 5;
  optional bool sendingPlaybackQueueTransaction = 6;
  optional string queueIdentifier = 7;
}