mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
15 lines
371 B
Protocol Buffer
15 lines
371 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package spotify.player.proto.state_restore;
|
|
|
|
import "state_restore/playback_quality.proto";
|
|
|
|
message PlaybackState {
|
|
optional int64 timestamp = 1;
|
|
optional int32 position_as_of_timestamp = 2;
|
|
optional int32 duration = 3;
|
|
optional bool is_buffering = 4;
|
|
optional PlaybackQuality playback_quality = 5;
|
|
optional double playback_speed = 6;
|
|
}
|
|
|