librespot/protocol/proto/state_restore/provided_track.proto
2021-12-10 20:33:43 +01:00

21 lines
489 B
Protocol Buffer

// Extracted from: Spotify 1.1.73.517 (macOS)
syntax = "proto2";
package spotify.player.proto.state_restore;
import "restrictions.proto";
option optimize_for = CODE_SIZE;
message ProvidedTrack {
optional string uid = 1;
optional string uri = 2;
map<string, string> metadata = 3;
optional string provider = 4;
repeated string removed = 5;
repeated string blocked = 6;
map<string, string> internal_metadata = 7;
optional Restrictions restrictions = 8;
}