librespot/protocol/proto/storylines.proto
2024-12-16 22:57:12 +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;
}