mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
19 lines
483 B
Protocol Buffer
19 lines
483 B
Protocol Buffer
// Extracted from: Spotify 1.2.52.442 (windows)
|
|
|
|
syntax = "proto2";
|
|
|
|
package spotify.player.proto;
|
|
|
|
import "context_player_options.proto";
|
|
import "pause_resume_origin.proto";
|
|
import "player_license.proto";
|
|
|
|
option optimize_for = CODE_SIZE;
|
|
|
|
message GlobalNode {
|
|
optional ContextPlayerOptions options = 1;
|
|
optional PlayerLicense license = 2;
|
|
map<string, string> configuration = 3;
|
|
optional PauseResumeOrigin pause_resume_origin = 4;
|
|
optional bool is_paused = 5;
|
|
}
|