1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-03 09:49:31 +02:00
librespot/protocol/proto/storylines.proto
Felix Prillwitz 2a574267ae
Update protobuf files (#1424)
* update protobuf definitions

* add additionally required proto files

* update version.rs

* adjust code to protobuf changes

* fix formatting

* apply suggestions, improve errors
2024-12-24 09:39:49 +01:00

29 lines
589 B
Protocol Buffer

// Extracted from: Spotify 1.2.52.442 (windows)
syntax = "proto3";
package spotify.storylines.v1;
option java_multiple_files = true;
option java_outer_classname = "StorylinesProto";
option java_package = "com.spotify.storylines.v1.extended_metadata";
message Artist {
string uri = 1;
string name = 2;
string avatar_cdn_url = 3;
}
message Card {
string id = 1;
string image_cdn_url = 2;
int32 image_width = 3;
int32 image_height = 4;
}
message Storyline {
string id = 1;
string entity_uri = 2;
Artist artist = 3;
repeated Card cards = 4;
}