librespot/protocol/proto/TrackNotPlayed.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

25 lines
699 B
Protocol Buffer

// Extracted from: Spotify 1.1.61.583 (Windows)
syntax = "proto2";
package spotify.event_sender.proto;
option optimize_for = CODE_SIZE;
message TrackNotPlayed {
optional bytes playback_id = 1;
optional string source_start = 2;
optional string reason_start = 3;
optional string source_end = 4;
optional string reason_end = 5;
optional string play_context = 6;
optional string play_track = 7;
optional string display_track = 8;
optional string provider = 9;
optional string referer = 10;
optional string referrer_version = 11;
optional string referrer_vendor = 12;
optional string gaia_dev_id = 13;
optional string reason_not_played = 14;
}