mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
113ac94c07
* Import Spotify 1.1.61.583 (Windows) protobufs * Import Spotify 1.1.33.569 protobufs missing in 1.1.61.583 * Remove unused protobufs, no longer present in 1.1.61.583
30 lines
624 B
Protocol Buffer
30 lines
624 B
Protocol Buffer
// Extracted from: Spotify 1.1.61.583 (Windows)
|
|
|
|
syntax = "proto2";
|
|
|
|
package spotify.popcount2.proto;
|
|
|
|
option optimize_for = CODE_SIZE;
|
|
|
|
message PopcountRequest {
|
|
|
|
}
|
|
|
|
message PopcountResult {
|
|
optional sint64 count = 1;
|
|
optional bool truncated = 2;
|
|
repeated string user = 3;
|
|
}
|
|
|
|
message PopcountUserUpdate {
|
|
optional string user = 1;
|
|
optional sint64 timestamp = 2;
|
|
optional bool added = 3;
|
|
}
|
|
|
|
message PopcountUpdate {
|
|
repeated PopcountUserUpdate updates = 1;
|
|
optional sint64 common_timestamp = 2;
|
|
optional sint64 remove_older_than_timestamp = 3;
|
|
optional bool verify_counter = 4;
|
|
}
|