mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-30 09:55:18 +00:00
34 lines
571 B
Protocol Buffer
34 lines
571 B
Protocol Buffer
syntax = "proto2";
|
|
package proto;
|
|
|
|
message NotificationPreferences {
|
|
string channel_id = 1;
|
|
message Preference {
|
|
int32 index = 1;
|
|
}
|
|
Preference pref_id = 2;
|
|
int32 number_0 = 3;
|
|
int32 number_1 = 4;
|
|
}
|
|
|
|
message LiveMessageParams {
|
|
message Params {
|
|
message Ids {
|
|
string channel_id = 1;
|
|
string video_id = 2;
|
|
}
|
|
Ids ids = 5;
|
|
}
|
|
Params params = 1;
|
|
int32 number_0 = 2;
|
|
int32 number_1 = 3;
|
|
}
|
|
|
|
message CreateCommentParams {
|
|
string video_id = 2;
|
|
message Params {
|
|
int32 index = 1;
|
|
}
|
|
Params params = 5;
|
|
int32 number = 10;
|
|
} |