librespot/protocol/proto/stream_prepare_response.proto

19 lines
424 B
Protocol Buffer
Raw Normal View History

// Extracted from: Spotify 1.1.61.583 (Windows)
syntax = "proto3";
package spotify.stream_reporting_esperanto.proto;
import "status_response.proto";
import "stream_handle.proto";
option objc_class_prefix = "ESP";
option java_package = "com.spotify.stream_reporting_esperanto.proto";
message StreamPrepareResponse {
oneof response {
StatusResponse status = 1;
StreamHandle stream_handle = 2;
}
}