Files
librespot-spotizerr-dev/proto/playback.proto
cool.gitter.not.me.again.duh 92a7a5d84e first commit
2025-05-30 21:28:21 -06:00

17 lines
393 B
Protocol Buffer

syntax = "proto2";
package spotify.player.proto.transfer;
import "context_track.proto";
option optimize_for = CODE_SIZE;
option java_package = "com.spotify.transfer";
message Playback {
optional int64 timestamp = 1;
optional int32 position_as_of_timestamp = 2;
optional double playback_speed = 3;
optional bool is_paused = 4;
optional ContextTrack current_track = 5;
}