mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
21 lines
375 B
Protocol Buffer
21 lines
375 B
Protocol Buffer
// Extracted from: Spotify 1.1.73.517 (macOS)
|
|
|
|
syntax = "proto3";
|
|
|
|
package spotify.collection_platform.proto;
|
|
|
|
option optimize_for = CODE_SIZE;
|
|
|
|
message CollectionPlatformItemsRequest {
|
|
CollectionSet set = 1;
|
|
repeated string items = 2;
|
|
}
|
|
|
|
enum CollectionSet {
|
|
UNKNOWN = 0;
|
|
SHOW = 1;
|
|
BAN = 2;
|
|
LISTENLATER = 3;
|
|
IGNOREINRECS = 4;
|
|
ENHANCED = 5;
|
|
}
|