mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
50 lines
1.1 KiB
Protocol Buffer
50 lines
1.1 KiB
Protocol Buffer
// Extracted from: Spotify 1.2.52.442 (windows)
|
|
|
|
syntax = "proto3";
|
|
|
|
package spotify.collection_platform.proto;
|
|
|
|
import "collection_platform_items.proto";
|
|
|
|
option java_package = "com.spotify.collection_platform.esperanto.proto";
|
|
option java_multiple_files = true;
|
|
option objc_class_prefix = "ESP";
|
|
option optimize_for = CODE_SIZE;
|
|
|
|
message CollectionPlatformSimpleResponse {
|
|
string error_msg = 1;
|
|
}
|
|
|
|
message CollectionPlatformItemsResponse {
|
|
repeated CollectionPlatformItem items = 1;
|
|
}
|
|
|
|
message CollectionPlatformContainsResponse {
|
|
repeated bool found = 1;
|
|
}
|
|
|
|
message Status {
|
|
int32 code = 1;
|
|
string reason = 2;
|
|
}
|
|
|
|
message CollectionPlatformEsperantoContainsResponse {
|
|
Status status = 1;
|
|
CollectionPlatformContainsResponse contains = 2;
|
|
}
|
|
|
|
message CollectionPlatformEsperantoItemsResponse {
|
|
Status status = 1;
|
|
repeated CollectionPlatformItem items = 2;
|
|
}
|
|
|
|
message CollectionPlatformContextItemsResponse {
|
|
Status status = 1;
|
|
repeated CollectionPlatformContextItem items = 2;
|
|
}
|
|
|
|
message CollectionPlatformContainsContextItemsResponse {
|
|
Status status = 1;
|
|
repeated bool found = 2;
|
|
}
|
|
|