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.player.esperanto.proto;
|
|
|
|
|
|
|
|
import "es_command_options.proto";
|
|
|
|
import "es_logging_params.proto";
|
|
|
|
|
|
|
|
option objc_class_prefix = "ESP";
|
|
|
|
option optimize_for = CODE_SIZE;
|
|
|
|
option java_package = "com.spotify.player.esperanto.proto";
|
|
|
|
|
|
|
|
message SeekToRequest {
|
2021-12-10 19:33:43 +00:00
|
|
|
enum Relative {
|
|
|
|
BEGINNING = 0;
|
|
|
|
END = 1;
|
|
|
|
CURRENT = 2;
|
|
|
|
}
|
2024-12-15 19:51:02 +00:00
|
|
|
|
|
|
|
CommandOptions options = 1;
|
|
|
|
LoggingParams logging_params = 2;
|
|
|
|
int64 position = 3;
|
|
|
|
Relative relative = 4;
|
2021-06-19 20:29:48 +00:00
|
|
|
}
|
2024-12-15 19:51:02 +00:00
|
|
|
|