librespot/protocol/proto/your_library_entity.proto
2024-12-16 22:57:12 +01:00

23 lines
698 B
Protocol Buffer

// Extracted from: Spotify 1.2.52.442 (windows)
syntax = "proto3";
package spotify.your_library.proto;
import "your_library_index.proto";
import "collection_index.proto";
option optimize_for = CODE_SIZE;
message YourLibraryEntity {
oneof entity {
collection.proto.CollectionAlbumEntry album = 1;
collection.proto.CollectionArtistEntry artist = 2;
YourLibraryRootlistEntity rootlist_entity = 3;
collection.proto.CollectionShowEntry show = 4;
collection.proto.CollectionBookEntry book = 5;
YourLibraryPreReleaseEntity prerelease = 6;
YourLibraryEventEntity event = 7;
collection.proto.CollectionAuthorEntry author = 9;
}
}