2024-12-15 19:51:02 +00:00
|
|
|
// Extracted from: Spotify 1.2.52.442 (windows)
|
2021-06-19 20:29:48 +00:00
|
|
|
|
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package spotify.stream_reporting_esperanto.proto;
|
|
|
|
|
2024-12-15 19:51:02 +00:00
|
|
|
import "google/protobuf/timestamp.proto";
|
2021-06-19 20:29:48 +00:00
|
|
|
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;
|
2021-06-19 20:29:48 +00:00
|
|
|
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;
|
2021-06-19 20:29:48 +00:00
|
|
|
}
|