2024-12-15 19:51:02 +00:00
|
|
|
// Extracted from: Spotify 1.2.52.442 (windows)
|
2021-06-19 20:29:48 +00:00
|
|
|
|
|
|
|
syntax = "proto2";
|
|
|
|
|
|
|
|
package spotify.player.proto.transfer;
|
|
|
|
|
|
|
|
import "context_player_options.proto";
|
|
|
|
import "playback.proto";
|
2024-12-15 19:51:02 +00:00
|
|
|
import "play_history.proto";
|
2021-06-19 20:29:48 +00:00
|
|
|
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;
|
2024-12-15 19:51:02 +00:00
|
|
|
optional PlayHistory play_history = 5;
|
2021-06-19 20:29:48 +00:00
|
|
|
}
|