mirror of
https://github.com/librespot-org/librespot.git
synced 2025-10-06 03:50:06 +02:00
Update protobufs to 1.1.73.517
This commit is contained in:
parent
4f51c1e810
commit
40163754bb
200 changed files with 3016 additions and 978 deletions
33
protocol/proto/collection_get_bans_request.proto
Normal file
33
protocol/proto/collection_get_bans_request.proto
Normal file
|
@ -0,0 +1,33 @@
|
|||
// Extracted from: Spotify 1.1.73.517 (macOS)
|
||||
|
||||
syntax = "proto3";
|
||||
|
||||
package spotify.collection_cosmos.proto;
|
||||
|
||||
import "policy/track_decoration_policy.proto";
|
||||
import "policy/artist_decoration_policy.proto";
|
||||
import "metadata/track_metadata.proto";
|
||||
import "metadata/artist_metadata.proto";
|
||||
import "status.proto";
|
||||
|
||||
option objc_class_prefix = "SPTCollectionCosmos";
|
||||
option optimize_for = CODE_SIZE;
|
||||
|
||||
message CollectionGetBansRequest {
|
||||
cosmos_util.proto.TrackDecorationPolicy track_policy = 1;
|
||||
cosmos_util.proto.ArtistDecorationPolicy artist_policy = 2;
|
||||
string sort = 3;
|
||||
bool timestamp = 4;
|
||||
uint32 update_throttling = 5;
|
||||
}
|
||||
|
||||
message Item {
|
||||
uint32 add_time = 1;
|
||||
cosmos_util.proto.TrackMetadata track_metadata = 2;
|
||||
cosmos_util.proto.ArtistMetadata artist_metadata = 3;
|
||||
}
|
||||
|
||||
message CollectionGetBansResponse {
|
||||
Status status = 1;
|
||||
repeated Item item = 2;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue