20 lines
435 B
Protocol Buffer
20 lines
435 B
Protocol Buffer
// Extracted from: Spotify 1.1.61.583 (Windows)
|
|
|
|
syntax = "proto2";
|
|
|
|
package spotify.player.proto.transfer;
|
|
|
|
import "context_player_options.proto";
|
|
import "playback.proto";
|
|
import "session.proto";
|
|
import "queue.proto";
|
|
|
|
option optimize_for = CODE_SIZE;
|
|
|
|
message TransferState {
|
|
optional ContextPlayerOptions options = 1;
|
|
optional Playback playback = 2;
|
|
optional Session current_session = 3;
|
|
optional Queue queue = 4;
|
|
}
|