mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
25 lines
728 B
Protocol Buffer
25 lines
728 B
Protocol Buffer
// Extracted from: Spotify 1.2.52.442 (windows)
|
|
|
|
syntax = "proto2";
|
|
|
|
package spotify.player.proto.transfer;
|
|
|
|
import "context.proto";
|
|
import "context_player_options.proto";
|
|
import "play_origin.proto";
|
|
import "suppressions.proto";
|
|
import "instrumentation_params.proto";
|
|
|
|
option optimize_for = CODE_SIZE;
|
|
|
|
message Session {
|
|
optional PlayOrigin play_origin = 1;
|
|
optional Context context = 2;
|
|
optional string current_uid = 3;
|
|
optional ContextPlayerOptionOverrides option_overrides = 4;
|
|
optional Suppressions suppressions = 5;
|
|
optional InstrumentationParams instrumentation_params = 6;
|
|
optional string shuffle_seed = 7;
|
|
optional Context main_context = 8;
|
|
optional string original_session_id = 9;
|
|
}
|