librespot/protocol/proto/canvaz.proto

42 lines
788 B
Protocol Buffer
Raw Normal View History

2024-12-15 19:51:02 +00:00
// Extracted from: Spotify 1.2.52.442 (windows)
2021-12-10 19:33:43 +00:00
syntax = "proto3";
2021-12-10 19:33:43 +00:00
package spotify.canvaz.cache;
2021-12-10 19:33:43 +00:00
option java_multiple_files = true;
option optimize_for = CODE_SIZE;
2021-12-10 19:33:43 +00:00
option java_package = "com.spotify.canvazcache.proto";
message Artist {
string uri = 1;
string name = 2;
string avatar = 3;
}
message EntityCanvazResponse {
message Canvaz {
string id = 1;
string url = 2;
string file_id = 3;
2024-12-15 19:51:02 +00:00
Type type = 4;
string entity_uri = 5;
Artist artist = 6;
bool explicit = 7;
string uploaded_by = 8;
string etag = 9;
string canvas_uri = 11;
2021-12-10 19:33:43 +00:00
string storylines_id = 12;
}
2024-12-15 19:51:02 +00:00
}
2024-12-15 19:51:02 +00:00
enum Type {
IMAGE = 0;
VIDEO = 1;
VIDEO_LOOPING = 2;
VIDEO_LOOPING_RANDOM = 3;
GIF = 4;
2021-12-10 19:33:43 +00:00
}
2024-12-15 19:51:02 +00:00