mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
30 lines
478 B
Protocol Buffer
30 lines
478 B
Protocol Buffer
|
// Custom protobuf crafted from spotify:user:attributes:mutated response:
|
||
|
//
|
||
|
// 1 {
|
||
|
// 1: "filter-explicit-content"
|
||
|
// }
|
||
|
// 2 {
|
||
|
// 1: 1639087299
|
||
|
// 2: 418909000
|
||
|
// }
|
||
|
|
||
|
syntax = "proto3";
|
||
|
|
||
|
package spotify.user_attributes.proto;
|
||
|
|
||
|
option optimize_for = CODE_SIZE;
|
||
|
|
||
|
message UserAttributesMutation {
|
||
|
repeated MutatedField fields = 1;
|
||
|
MutationCommand cmd = 2;
|
||
|
}
|
||
|
|
||
|
message MutatedField {
|
||
|
string name = 1;
|
||
|
}
|
||
|
|
||
|
message MutationCommand {
|
||
|
int64 timestamp = 1;
|
||
|
int32 unknown = 2;
|
||
|
}
|