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

19 lines
383 B
Protocol Buffer

// Extracted from: Spotify 1.1.73.517 (macOS)
syntax = "proto3";
package spotify.event_sender.proto;
option optimize_for = CODE_SIZE;
message EventEntity {
uint32 file_format_version = 1;
string event_name = 2;
bytes sequence_id = 3;
uint64 sequence_number = 4;
bytes payload = 5;
string owner = 6;
bool authenticated = 7;
uint64 record_id = 8;
}