librespot/protocol/proto/storylines.proto
Roderick van Domburg 113ac94c07
Update protobufs (#796)
* Import Spotify 1.1.61.583 (Windows) protobufs
* Import Spotify 1.1.33.569 protobufs missing in 1.1.61.583
* Remove unused protobufs, no longer present in 1.1.61.583
2021-06-19 22:29:48 +02:00

30 lines
589 B
Protocol Buffer

// Extracted from: Spotify 1.1.61.583 (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;
}