19 lines
398 B
Protocol Buffer
19 lines
398 B
Protocol Buffer
|
// Extracted from: Spotify 1.1.73.517 (macOS)
|
||
|
|
||
|
syntax = "proto3";
|
||
|
|
||
|
package spotify.your_library.proto;
|
||
|
|
||
|
import "your_library_pseudo_playlist_config.proto";
|
||
|
|
||
|
option optimize_for = CODE_SIZE;
|
||
|
|
||
|
message YourLibraryRequestHeader {
|
||
|
bool remaining_entities = 9;
|
||
|
}
|
||
|
|
||
|
message YourLibraryRequest {
|
||
|
YourLibraryRequestHeader header = 1;
|
||
|
YourLibraryPseudoPlaylistConfig pseudo_playlist_config = 4;
|
||
|
}
|