mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
19 lines
553 B
Protocol Buffer
19 lines
553 B
Protocol Buffer
// Extracted from: Spotify 1.2.52.442 (windows)
|
|
|
|
syntax = "proto2";
|
|
|
|
package spotify.cosmos_util.proto;
|
|
|
|
option java_multiple_files = true;
|
|
option optimize_for = CODE_SIZE;
|
|
option java_package = "com.spotify.cosmos.util.proto";
|
|
|
|
message ArtistCollectionState {
|
|
optional string collection_link = 1;
|
|
optional bool followed = 2;
|
|
optional uint32 num_tracks_in_collection = 3;
|
|
optional uint32 num_albums_in_collection = 4;
|
|
optional bool is_banned = 5;
|
|
optional bool can_ban = 6;
|
|
optional uint32 num_explicitly_liked_tracks = 7;
|
|
}
|