mikufans-proto 8.52.0+build.19546312

gRPC APIs for Mikufans
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
// This file is @generated by prost-build.
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AssistantInfo {
    ///
    #[prost(int64, tag = "1")]
    pub rank: i64,
    ///
    #[prost(int64, tag = "2")]
    pub uid: i64,
    ///
    #[prost(string, tag = "3")]
    pub uname: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "4")]
    pub face: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "5")]
    pub award_content: ::prost::alloc::string::String,
    ///
    #[prost(bool, tag = "6")]
    pub is_mystery: bool,
}
impl ::prost::Name for AssistantInfo {
    const NAME: &'static str = "AssistantInfo";
    const PACKAGE: &'static str = "bilibili.broadcast.live.pk";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.broadcast.live.pk.AssistantInfo".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.broadcast.live.pk.AssistantInfo".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DmConf {
    ///
    #[prost(string, tag = "1")]
    pub font_color: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "2")]
    pub bg_color: ::prost::alloc::string::String,
}
impl ::prost::Name for DmConf {
    const NAME: &'static str = "DmConf";
    const PACKAGE: &'static str = "bilibili.broadcast.live.pk";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.broadcast.live.pk.DmConf".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.broadcast.live.pk.DmConf".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EscapeInfo {
    ///
    #[prost(int64, tag = "1")]
    pub count: i64,
    ///
    #[prost(int64, tag = "2")]
    pub puni_time: i64,
    ///
    #[prost(string, tag = "3")]
    pub tips: ::prost::alloc::string::String,
}
impl ::prost::Name for EscapeInfo {
    const NAME: &'static str = "EscapeInfo";
    const PACKAGE: &'static str = "bilibili.broadcast.live.pk";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.broadcast.live.pk.EscapeInfo".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.broadcast.live.pk.EscapeInfo".into()
    }
}
///
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct FinalConf {
    ///
    #[prost(int64, tag = "1")]
    pub start_time: i64,
    ///
    #[prost(int64, tag = "2")]
    pub end_time: i64,
    ///
    #[prost(int64, tag = "3")]
    pub switch: i64,
}
impl ::prost::Name for FinalConf {
    const NAME: &'static str = "FinalConf";
    const PACKAGE: &'static str = "bilibili.broadcast.live.pk";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.broadcast.live.pk.FinalConf".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.broadcast.live.pk.FinalConf".into()
    }
}
///
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct InvitePkResp {
    ///
    #[prost(int64, tag = "1")]
    pub invited_id: i64,
    ///
    #[prost(int64, tag = "2")]
    pub wait_time: i64,
}
impl ::prost::Name for InvitePkResp {
    const NAME: &'static str = "InvitePkResp";
    const PACKAGE: &'static str = "bilibili.broadcast.live.pk";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.broadcast.live.pk.InvitePkResp".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.broadcast.live.pk.InvitePkResp".into()
    }
}
///
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct NextEffect {
    ///
    #[prost(int64, tag = "1")]
    pub uid: i64,
    ///
    #[prost(int64, tag = "2")]
    pub effect_id: i64,
}
impl ::prost::Name for NextEffect {
    const NAME: &'static str = "NextEffect";
    const PACKAGE: &'static str = "bilibili.broadcast.live.pk";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.broadcast.live.pk.NextEffect".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.broadcast.live.pk.NextEffect".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PkScoreMultiplePlay {
    ///
    #[prost(int64, tag = "1")]
    pub pk_id: i64,
    ///
    #[prost(int64, tag = "2")]
    pub status: i64,
    ///
    #[prost(int64, tag = "3")]
    pub target_votes: i64,
    ///
    #[prost(int64, tag = "4")]
    pub multiple_collect_start_time: i64,
    ///
    #[prost(int64, tag = "5")]
    pub multiple_collect_end_time: i64,
    ///
    #[prost(string, tag = "6")]
    pub award_name: ::prost::alloc::string::String,
    ///
    #[prost(int64, tag = "7")]
    pub award_num: i64,
    ///
    #[prost(int64, tag = "8")]
    pub award_no: i64,
    ///
    #[prost(string, tag = "9")]
    pub rule_url: ::prost::alloc::string::String,
    ///
    #[prost(int64, tag = "10")]
    pub draw_start_time: i64,
    ///
    #[prost(int64, tag = "11")]
    pub draw_end_time: i64,
    ///
    #[prost(string, tag = "12")]
    pub draw_award_name: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "13")]
    pub draw_award_value: ::prost::alloc::string::String,
    ///
    #[prost(int64, tag = "14")]
    pub award_multiple_time: i64,
    ///
    #[prost(int64, tag = "15")]
    pub award_start_time: i64,
    ///
    #[prost(int64, tag = "16")]
    pub award_end_time: i64,
    ///
    #[prost(int64, tag = "17")]
    pub power: i64,
    ///
    #[prost(string, tag = "18")]
    pub guide_str: ::prost::alloc::string::String,
}
impl ::prost::Name for PkScoreMultiplePlay {
    const NAME: &'static str = "PKScoreMultiplePlay";
    const PACKAGE: &'static str = "bilibili.broadcast.live.pk";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.broadcast.live.pk.PKScoreMultiplePlay".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.broadcast.live.pk.PKScoreMultiplePlay".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PkCapsule {
    ///
    #[prost(enumeration = "PkCapsuleType", tag = "1")]
    pub capsule_type: i32,
    ///
    #[prost(int64, tag = "2")]
    pub end_time: i64,
    ///
    #[prost(string, tag = "3")]
    pub text: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "4")]
    pub animation_text: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "5")]
    pub url: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "6")]
    pub toast: ::prost::alloc::string::String,
}
impl ::prost::Name for PkCapsule {
    const NAME: &'static str = "PkCapsule";
    const PACKAGE: &'static str = "bilibili.broadcast.live.pk";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.broadcast.live.pk.PkCapsule".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.broadcast.live.pk.PkCapsule".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PkCard {
    ///
    #[prost(string, tag = "1")]
    pub card_id: ::prost::alloc::string::String,
    ///
    #[prost(int64, tag = "2")]
    pub card_type: i64,
    ///
    #[prost(int64, tag = "3")]
    pub end_time: i64,
    ///
    #[prost(string, tag = "4")]
    pub text: ::prost::alloc::string::String,
}
impl ::prost::Name for PkCard {
    const NAME: &'static str = "PkCard";
    const PACKAGE: &'static str = "bilibili.broadcast.live.pk";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.broadcast.live.pk.PkCard".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.broadcast.live.pk.PkCard".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PkCardPlay {
    ///
    #[prost(string, tag = "1")]
    pub rule_url: ::prost::alloc::string::String,
}
impl ::prost::Name for PkCardPlay {
    const NAME: &'static str = "PkCardPlay";
    const PACKAGE: &'static str = "bilibili.broadcast.live.pk";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.broadcast.live.pk.PkCardPlay".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.broadcast.live.pk.PkCardPlay".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PkGiftEffect {
    ///
    #[prost(int64, tag = "1")]
    pub sender_uid: i64,
    ///
    #[prost(int64, tag = "2")]
    pub anchor_uid: i64,
    ///
    #[prost(int64, tag = "3")]
    pub gift_effect_id: i64,
    ///
    #[prost(message, repeated, tag = "4")]
    pub next_effect_list: ::prost::alloc::vec::Vec<NextEffect>,
    ///
    #[prost(int64, tag = "5")]
    pub timestamp: i64,
}
impl ::prost::Name for PkGiftEffect {
    const NAME: &'static str = "PkGiftEffect";
    const PACKAGE: &'static str = "bilibili.broadcast.live.pk";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.broadcast.live.pk.PkGiftEffect".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.broadcast.live.pk.PkGiftEffect".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PkInfo {
    ///
    #[prost(message, optional, tag = "1")]
    pub pk_basic: ::core::option::Option<PkBasic>,
    ///
    #[prost(message, repeated, tag = "2")]
    pub members: ::prost::alloc::vec::Vec<PkUser>,
    ///
    #[prost(int64, tag = "3")]
    pub timestamp: i64,
    ///
    #[prost(int64, tag = "4")]
    pub mill_timestamp: i64,
    ///
    #[prost(message, repeated, tag = "5")]
    pub pk_group: ::prost::alloc::vec::Vec<PkGroup>,
    ///
    #[prost(message, optional, tag = "6")]
    pub pk_match_info: ::core::option::Option<PkMatchInfo>,
    ///
    #[prost(message, optional, tag = "7")]
    pub invite_pk_resp: ::core::option::Option<InvitePkResp>,
    ///
    #[prost(message, optional, tag = "8")]
    pub pk_play: ::core::option::Option<PkPlay>,
    ///
    #[prost(bool, tag = "9")]
    pub audience_open: bool,
}
impl ::prost::Name for PkInfo {
    const NAME: &'static str = "PkInfo";
    const PACKAGE: &'static str = "bilibili.broadcast.live.pk";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.broadcast.live.pk.PkInfo".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.broadcast.live.pk.PkInfo".into()
    }
}
///
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct PkMatchInfo {
    ///
    #[prost(int64, tag = "1")]
    pub match_status: i64,
    ///
    #[prost(int64, tag = "2")]
    pub match_max_time: i64,
    ///
    #[prost(int64, tag = "3")]
    pub match_end_time: i64,
}
impl ::prost::Name for PkMatchInfo {
    const NAME: &'static str = "PkMatchInfo";
    const PACKAGE: &'static str = "bilibili.broadcast.live.pk";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.broadcast.live.pk.PkMatchInfo".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.broadcast.live.pk.PkMatchInfo".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PkPlay {
    ///
    #[prost(message, optional, tag = "1")]
    pub pk_score_multiple_play: ::core::option::Option<PkScoreMultiplePlay>,
    ///
    #[prost(message, optional, tag = "2")]
    pub final_conf: ::core::option::Option<FinalConf>,
    ///
    #[prost(bool, tag = "3")]
    pub show_streak: bool,
    ///
    #[prost(message, optional, tag = "4")]
    pub dm_conf: ::core::option::Option<DmConf>,
    ///
    #[prost(message, optional, tag = "5")]
    pub escape: ::core::option::Option<EscapeInfo>,
    ///
    #[prost(message, optional, tag = "6")]
    pub pk_card_play: ::core::option::Option<PkCardPlay>,
    ///
    #[prost(int64, tag = "7")]
    pub pre_duration: i64,
    ///
    #[prost(string, tag = "8")]
    pub pk_play_text: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "9")]
    pub pk_punish_text: ::prost::alloc::string::String,
    ///
    #[prost(int64, tag = "10")]
    pub pk_text_hash: i64,
    ///
    #[prost(bool, tag = "11")]
    pub pk_text_enabled: bool,
    ///
    #[prost(message, optional, tag = "12")]
    pub pk_gift_effect: ::core::option::Option<PkGiftEffect>,
}
impl ::prost::Name for PkPlay {
    const NAME: &'static str = "PkPlay";
    const PACKAGE: &'static str = "bilibili.broadcast.live.pk";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.broadcast.live.pk.PkPlay".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.broadcast.live.pk.PkPlay".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PkBasic {
    ///
    #[prost(int64, tag = "1")]
    pub pk_id: i64,
    ///
    #[prost(string, tag = "2")]
    pub biz_session_id: ::prost::alloc::string::String,
    ///
    #[prost(int64, tag = "3")]
    pub init_id: i64,
    ///
    #[prost(int64, tag = "4")]
    pub init_uid: i64,
    ///
    #[prost(int64, tag = "5")]
    pub status: i64,
    ///
    #[prost(int64, tag = "6")]
    pub r#type: i64,
    ///
    #[prost(int64, tag = "7")]
    pub sub_type: i64,
    ///
    #[prost(int64, tag = "8")]
    pub start_time: i64,
    ///
    #[prost(int64, tag = "9")]
    pub end_time: i64,
    ///
    #[prost(int64, tag = "10")]
    pub punish_end_time: i64,
    ///
    #[prost(int64, tag = "11")]
    pub sprint_duration: i64,
    ///
    #[prost(string, tag = "12")]
    pub punish_text: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "13")]
    pub template_id: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "14")]
    pub main_page: ::prost::alloc::string::String,
    ///
    #[prost(int64, tag = "15")]
    pub muti_pk_type: i64,
    ///
    #[prost(int64, tag = "16")]
    pub season_id: i64,
    ///
    #[prost(string, tag = "17")]
    pub status_msg: ::prost::alloc::string::String,
    ///
    #[prost(map = "string, string", tag = "18")]
    pub satellite_info: ::std::collections::HashMap<
        ::prost::alloc::string::String,
        ::prost::alloc::string::String,
    >,
}
impl ::prost::Name for PkBasic {
    const NAME: &'static str = "pkBasic";
    const PACKAGE: &'static str = "bilibili.broadcast.live.pk";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.broadcast.live.pk.pkBasic".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.broadcast.live.pk.pkBasic".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PkGroup {
    ///
    #[prost(int64, tag = "1")]
    pub group_id: i64,
    ///
    #[prost(int64, tag = "2")]
    pub votes: i64,
    ///
    #[prost(string, tag = "3")]
    pub votes_text: ::prost::alloc::string::String,
    ///
    #[prost(int64, tag = "4")]
    pub is_winner: i64,
}
impl ::prost::Name for PkGroup {
    const NAME: &'static str = "pkGroup";
    const PACKAGE: &'static str = "bilibili.broadcast.live.pk";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.broadcast.live.pk.pkGroup".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.broadcast.live.pk.pkGroup".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PkUser {
    ///
    #[prost(int64, tag = "1")]
    pub uid: i64,
    ///
    #[prost(int64, tag = "2")]
    pub room_id: i64,
    ///
    #[prost(string, tag = "3")]
    pub uname: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "4")]
    pub face: ::prost::alloc::string::String,
    ///
    #[prost(int64, tag = "5")]
    pub votes: i64,
    ///
    #[prost(string, tag = "6")]
    pub votes_text: ::prost::alloc::string::String,
    ///
    #[prost(int64, tag = "7")]
    pub rank: i64,
    ///
    #[prost(int64, tag = "8")]
    pub status: i64,
    ///
    #[prost(message, repeated, tag = "9")]
    pub assist_info: ::prost::alloc::vec::Vec<AssistantInfo>,
    ///
    #[prost(int64, tag = "10")]
    pub is_follow: i64,
    ///
    #[prost(int64, tag = "11")]
    pub is_winner: i64,
    ///
    #[prost(int64, tag = "12")]
    pub group_id: i64,
    ///
    #[prost(int64, tag = "13")]
    pub golds: i64,
    ///
    #[prost(int64, tag = "14")]
    pub date_streak: i64,
    ///
    #[prost(int64, tag = "15")]
    pub pk_multiple_status: i64,
    ///
    #[prost(string, tag = "16")]
    pub power: ::prost::alloc::string::String,
    ///
    #[prost(bool, tag = "17")]
    pub is_latest_streak: bool,
    ///
    #[prost(message, repeated, tag = "19")]
    pub pk_cards: ::prost::alloc::vec::Vec<PkCard>,
    ///
    #[prost(message, repeated, tag = "20")]
    pub capsules: ::prost::alloc::vec::Vec<PkCapsule>,
}
impl ::prost::Name for PkUser {
    const NAME: &'static str = "pkUser";
    const PACKAGE: &'static str = "bilibili.broadcast.live.pk";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.broadcast.live.pk.pkUser".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.broadcast.live.pk.pkUser".into()
    }
}
///
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum PkCapsuleType {
    ///
    None = 0,
    ///
    FirstMultiple = 1,
}
impl PkCapsuleType {
    /// String value of the enum field names used in the ProtoBuf definition.
    ///
    /// The values are not transformed in any way and thus are considered stable
    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
    pub fn as_str_name(&self) -> &'static str {
        match self {
            Self::None => "PkCapsuleTypeNone",
            Self::FirstMultiple => "FirstMultiple",
        }
    }
    /// Creates an enum from field names used in the ProtoBuf definition.
    pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
        match value {
            "PkCapsuleTypeNone" => Some(Self::None),
            "FirstMultiple" => Some(Self::FirstMultiple),
            _ => None,
        }
    }
}