mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
24 lines
465 B
Protocol Buffer
24 lines
465 B
Protocol Buffer
// Extracted from: Spotify 1.1.73.517 (macOS)
|
|
|
|
syntax = "proto3";
|
|
|
|
package spotify.collection_platform.proto;
|
|
|
|
option optimize_for = CODE_SIZE;
|
|
|
|
message CollectionPlatformSimpleResponse {
|
|
string error_msg = 1;
|
|
}
|
|
|
|
message CollectionPlatformItem {
|
|
string uri = 1;
|
|
int64 add_time = 2;
|
|
}
|
|
|
|
message CollectionPlatformItemsResponse {
|
|
repeated CollectionPlatformItem items = 1;
|
|
}
|
|
|
|
message CollectionPlatformContainsResponse {
|
|
repeated bool found = 1;
|
|
}
|