librespot/protocol/proto/collection_platform_responses.proto

25 lines
465 B
Protocol Buffer
Raw 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 CollectionPlatformSimpleResponse {
string error_msg = 1;
}
2021-12-10 19:33:43 +00:00
message CollectionPlatformItem {
string uri = 1;
int64 add_time = 2;
}
message CollectionPlatformItemsResponse {
2021-12-10 19:33:43 +00:00
repeated CollectionPlatformItem items = 1;
}
message CollectionPlatformContainsResponse {
repeated bool found = 1;
}