mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
21 lines
496 B
Protocol Buffer
21 lines
496 B
Protocol Buffer
// Extracted from: Spotify 1.2.52.442 (windows)
|
|
|
|
syntax = "proto2";
|
|
|
|
package spotify.player.proto;
|
|
|
|
import "context_index.proto";
|
|
import "context_track.proto";
|
|
import "seek_to_position.proto";
|
|
|
|
option optimize_for = CODE_SIZE;
|
|
|
|
message TrackInstance {
|
|
reserved 3;
|
|
optional ContextTrack track = 1;
|
|
optional uint64 id = 2;
|
|
optional SeekToPosition seek_to_position = 7;
|
|
optional bool initially_paused = 4;
|
|
optional ContextIndex index = 5;
|
|
optional string provider = 6;
|
|
}
|