librespot-protocol 0.8.0

The protobuf logic for communicating with Spotify servers
Documentation
// Extracted from: Spotify 1.2.52.442 (windows)

syntax = "proto3";

package spotify.frecency.v1;

import "google/protobuf/timestamp.proto";

option java_multiple_files = true;
option optimize_for = CODE_SIZE;
option java_outer_classname = "FrecencyProto";
option java_package = "com.spotify.frecency.v1";

message FrecencyResponse {
    repeated PlayContext play_contexts = 1;
}

message PlayContext {
    string uri = 1;
    Frecency frecency = 2;
}

message Frecency {
    double ln_frecency = 1;
    int32 event_count = 2;
    google.protobuf.Timestamp last_event_time = 3;
}