librespot/protocol/proto/stream_seek_request.proto

21 lines
533 B
Protocol Buffer
Raw Normal View History

2024-12-15 19:51:02 +00:00
// Extracted from: Spotify 1.2.52.442 (windows)
syntax = "proto3";
package spotify.stream_reporting_esperanto.proto;
2024-12-15 19:51:02 +00:00
import "google/protobuf/timestamp.proto";
import "stream_handle.proto";
option objc_class_prefix = "ESP";
option java_package = "com.spotify.stream_reporting_esperanto.proto";
message StreamSeekRequest {
2024-12-15 19:51:02 +00:00
reserved 2;
StreamHandle stream_handle = 1;
2021-12-10 19:33:43 +00:00
uint64 from_position = 3;
uint64 to_position = 4;
2024-12-15 19:51:02 +00:00
google.protobuf.Timestamp client_timestamp = 5;
optional bool is_system_initiated = 6;
}