librespot/protocol/proto/collection_platform_requests.proto

22 lines
375 B
Protocol Buffer
Raw Permalink Normal View History

2021-12-10 19:33:43 +00:00
// 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;
2021-12-10 19:33:43 +00:00
ENHANCED = 5;
}