mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
18 lines
383 B
Protocol Buffer
18 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;
|
|
}
|