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
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StartRequest {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StartResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StopRequest {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StopResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct VersionRequest {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct VersionResponse {
    #[prost(string, tag = "1")]
    pub version: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct LogoutRequest {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct LogoutResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DingRequest {
    #[prost(string, tag = "1")]
    pub data: ::prost::alloc::string::String,
}
///*
/// Ding has no return value
///  Puppet should emit a `ding` event when it receives a `ding()` call
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DingResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DirtyPayloadRequest {
    #[prost(enumeration = "PayloadType", tag = "1")]
    pub r#type: i32,
    #[prost(string, tag = "2")]
    pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DirtyPayloadResponse {}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum PayloadType {
    Unknown = 0,
    Message = 1,
    Contact = 2,
    Room = 3,
    RoomMember = 4,
    Friendship = 5,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContactListRequest {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContactListResponse {
    #[prost(string, repeated, tag = "1")]
    pub ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContactPayloadRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContactPayloadResponse {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    #[prost(enumeration = "ContactGender", tag = "2")]
    pub gender: i32,
    #[prost(enumeration = "ContactType", tag = "3")]
    pub r#type: i32,
    #[prost(string, tag = "4")]
    pub name: ::prost::alloc::string::String,
    #[prost(string, tag = "5")]
    pub avatar: ::prost::alloc::string::String,
    #[prost(string, tag = "6")]
    pub address: ::prost::alloc::string::String,
    #[prost(string, tag = "7")]
    pub alias: ::prost::alloc::string::String,
    #[prost(string, tag = "8")]
    pub city: ::prost::alloc::string::String,
    #[prost(bool, tag = "9")]
    pub friend: bool,
    #[prost(string, tag = "10")]
    pub province: ::prost::alloc::string::String,
    #[prost(string, tag = "11")]
    pub signature: ::prost::alloc::string::String,
    #[prost(bool, tag = "12")]
    pub star: bool,
    #[prost(string, tag = "13")]
    pub weixin: ::prost::alloc::string::String,
    #[prost(string, tag = "14")]
    pub corporation: ::prost::alloc::string::String,
    #[prost(string, tag = "15")]
    pub title: ::prost::alloc::string::String,
    #[prost(string, tag = "16")]
    pub description: ::prost::alloc::string::String,
    #[prost(bool, tag = "17")]
    pub coworker: bool,
    #[prost(string, repeated, tag = "18")]
    pub phone: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContactSelfQrCodeRequest {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContactSelfQrCodeResponse {
    #[prost(string, tag = "1")]
    pub qrcode: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContactSelfNameRequest {
    #[prost(string, tag = "1")]
    pub name: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContactSelfNameResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContactSelfSignatureRequest {
    #[prost(string, tag = "1")]
    pub signature: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContactSelfSignatureResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContactAliasRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    /// nullable
    #[prost(message, optional, tag = "2")]
    pub alias: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContactAliasResponse {
    #[prost(message, optional, tag = "1")]
    pub alias: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContactAvatarRequest {
    /// nullable
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    ///*
    /// Huan(202011) TODO:
    ///  1. rename to file_box
    ///  2. replace it by FileBoxChunk with stream support
    #[prost(message, optional, tag = "2")]
    pub filebox: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContactAvatarResponse {
    ///*
    /// Huan(202011) TODO:
    ///  1. rename to file_box
    ///  2. replace it by FileBoxChunk with stream support
    #[prost(message, optional, tag = "1")]
    pub filebox: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContactPhoneRequest {
    #[prost(string, tag = "1")]
    pub contact_id: ::prost::alloc::string::String,
    #[prost(string, repeated, tag = "2")]
    pub phone_list: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContactPhoneResponse {
    #[prost(string, repeated, tag = "2")]
    pub phone_list: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContactCorporationRemarkRequest {
    #[prost(string, tag = "1")]
    pub contact_id: ::prost::alloc::string::String,
    #[prost(message, optional, tag = "2")]
    pub corporation_remark: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContactCorporationRemarkResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContactDescriptionRequest {
    #[prost(string, tag = "1")]
    pub contact_id: ::prost::alloc::string::String,
    #[prost(message, optional, tag = "2")]
    pub description: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ContactDescriptionResponse {}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum ContactGender {
    Unspecified = 0,
    Male = 1,
    Female = 2,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum ContactType {
    Unspecified = 0,
    Personal = 1,
    Official = 2,
    Corporation = 3,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventRequest {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventResponse {
    #[prost(enumeration = "EventType", tag = "1")]
    pub r#type: i32,
    /// TODO: Huan(202002) consider to use a PB Map?
    ///
    /// JSON.stringify({ ... })
    #[prost(string, tag = "2")]
    pub payload: ::prost::alloc::string::String,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum EventType {
    Unspecified = 0,
    Heartbeat = 1,
    Message = 2,
    Dong = 3,
    Error = 16,
    Friendship = 17,
    RoomInvite = 18,
    RoomJoin = 19,
    RoomLeave = 20,
    RoomTopic = 21,
    Scan = 22,
    Ready = 23,
    Reset = 24,
    Login = 25,
    Logout = 26,
    Dirty = 27,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FriendshipPayloadRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    ///*
    /// Huan(202003):
    ///  What's the reason we need belowing payload?
    ///  We should remove it if possible.
    #[prost(message, optional, tag = "2")]
    pub payload: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FriendshipPayloadResponse {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    #[prost(string, tag = "2")]
    pub contact_id: ::prost::alloc::string::String,
    #[prost(string, tag = "3")]
    pub hello: ::prost::alloc::string::String,
    #[prost(enumeration = "FriendshipType", tag = "4")]
    pub r#type: i32,
    #[prost(string, tag = "5")]
    pub stranger: ::prost::alloc::string::String,
    #[prost(string, tag = "6")]
    pub ticket: ::prost::alloc::string::String,
    #[prost(enumeration = "FriendshipSceneType", tag = "7")]
    pub scene: i32,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FriendshipSearchPhoneRequest {
    #[prost(string, tag = "1")]
    pub phone: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FriendshipSearchPhoneResponse {
    /// nullable
    #[prost(message, optional, tag = "1")]
    pub contact_id: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FriendshipSearchWeixinRequest {
    #[prost(string, tag = "1")]
    pub weixin: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FriendshipSearchWeixinResponse {
    /// nullable
    #[prost(message, optional, tag = "1")]
    pub contact_id: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FriendshipAddRequest {
    #[prost(string, tag = "1")]
    pub contact_id: ::prost::alloc::string::String,
    #[prost(string, tag = "2")]
    pub hello: ::prost::alloc::string::String,
    #[prost(message, optional, tag = "3")]
    pub source_room_id: ::core::option::Option<::prost::alloc::string::String>,
    #[prost(message, optional, tag = "4")]
    pub source_contact_id: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FriendshipAddResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FriendshipAcceptRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FriendshipAcceptResponse {}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum FriendshipType {
    Unspecified = 0,
    Confirm = 1,
    Receive = 2,
    Verify = 3,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum FriendshipSceneType {
    Unspecified = 0,
    Qq = 1,
    Email = 2,
    Weixin = 3,
    Qqtbd = 12,
    Room = 14,
    Phone = 15,
    Card = 17,
    Location = 18,
    Bottle = 25,
    Shaking = 29,
    Qrcode = 30,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FileBoxChunk {
    #[prost(oneof = "file_box_chunk::Payload", tags = "1, 2")]
    pub payload: ::core::option::Option<file_box_chunk::Payload>,
}
/// Nested message and enum types in `FileBoxChunk`.
pub mod file_box_chunk {
    #[derive(Clone, PartialEq, ::prost::Oneof)]
    pub enum Payload {
        #[prost(bytes, tag = "1")]
        Data(::prost::alloc::vec::Vec<u8>),
        #[prost(string, tag = "2")]
        Name(::prost::alloc::string::String),
    }
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessagePayloadRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessagePayloadResponse {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    #[prost(string, tag = "2")]
    pub filename: ::prost::alloc::string::String,
    #[prost(string, tag = "3")]
    pub text: ::prost::alloc::string::String,
    #[prost(uint64, tag = "4")]
    pub timestamp: u64,
    #[prost(enumeration = "MessageType", tag = "5")]
    pub r#type: i32,
    #[prost(string, tag = "6")]
    pub from_id: ::prost::alloc::string::String,
    #[prost(string, tag = "7")]
    pub room_id: ::prost::alloc::string::String,
    #[prost(string, tag = "8")]
    pub to_id: ::prost::alloc::string::String,
    #[prost(string, repeated, tag = "9")]
    pub mention_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageImageRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    #[prost(enumeration = "ImageType", tag = "2")]
    pub r#type: i32,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageImageResponse {
    ///*
    /// Huan(202011) TODO:
    ///  1. rename to file_box
    ///  2. replace it by FileBoxChunk with stream support
    #[prost(string, tag = "1")]
    pub filebox: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageImageStreamRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    #[prost(enumeration = "ImageType", tag = "2")]
    pub r#type: i32,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageImageStreamResponse {
    #[prost(message, optional, tag = "1")]
    pub file_box_chunk: ::core::option::Option<FileBoxChunk>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageContactRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageContactResponse {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageFileRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageFileResponse {
    ///*
    /// Huan(202011) deprecated: use MessageFileStreamResponse instead
    #[prost(string, tag = "1")]
    pub filebox: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageFileStreamRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageFileStreamResponse {
    #[prost(message, optional, tag = "1")]
    pub file_box_chunk: ::core::option::Option<FileBoxChunk>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageMiniProgramRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageMiniProgramResponse {
    #[prost(string, tag = "1")]
    pub mini_program: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageUrlRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageUrlResponse {
    #[prost(string, tag = "1")]
    pub url_link: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageSendContactRequest {
    #[prost(string, tag = "1")]
    pub conversation_id: ::prost::alloc::string::String,
    #[prost(string, tag = "2")]
    pub contact_id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageSendContactResponse {
    /// nullable
    #[prost(message, optional, tag = "1")]
    pub id: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageSendFileRequest {
    #[prost(string, tag = "1")]
    pub conversation_id: ::prost::alloc::string::String,
    #[prost(string, tag = "2")]
    pub filebox: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageSendFileResponse {
    #[prost(message, optional, tag = "1")]
    pub id: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageSendFileStreamRequest {
    #[prost(oneof = "message_send_file_stream_request::Payload", tags = "1, 2")]
    pub payload: ::core::option::Option<message_send_file_stream_request::Payload>,
}
/// Nested message and enum types in `MessageSendFileStreamRequest`.
pub mod message_send_file_stream_request {
    #[derive(Clone, PartialEq, ::prost::Oneof)]
    pub enum Payload {
        #[prost(string, tag = "1")]
        ConversationId(::prost::alloc::string::String),
        #[prost(message, tag = "2")]
        FileBoxChunk(super::FileBoxChunk),
    }
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageSendFileStreamResponse {
    #[prost(message, optional, tag = "1")]
    pub id: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageSendTextRequest {
    #[prost(string, tag = "1")]
    pub conversation_id: ::prost::alloc::string::String,
    #[prost(string, tag = "2")]
    pub text: ::prost::alloc::string::String,
    /// Huan(202011) FIXME: Issue #99
    /// https://github.com/wechaty/grpc/issues/99
    #[prost(string, repeated, tag = "3")]
    pub mentional_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageSendTextResponse {
    #[prost(message, optional, tag = "1")]
    pub id: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageSendMiniProgramRequest {
    #[prost(string, tag = "1")]
    pub conversation_id: ::prost::alloc::string::String,
    #[prost(string, tag = "2")]
    pub mini_program: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageSendMiniProgramResponse {
    #[prost(message, optional, tag = "1")]
    pub id: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageSendUrlRequest {
    #[prost(string, tag = "1")]
    pub conversation_id: ::prost::alloc::string::String,
    #[prost(string, tag = "2")]
    pub url_link: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageSendUrlResponse {
    #[prost(message, optional, tag = "1")]
    pub id: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageRecallRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageRecallResponse {
    #[prost(bool, tag = "1")]
    pub success: bool,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageForwardRequest {
    #[prost(string, tag = "1")]
    pub message_id: ::prost::alloc::string::String,
    #[prost(string, tag = "2")]
    pub conversation_id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MessageForwardResponse {
    #[prost(message, optional, tag = "1")]
    pub id: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum MessageType {
    Unspecified = 0,
    Attachment = 1,
    Audio = 2,
    Contact = 3,
    Emoticon = 4,
    Image = 5,
    Text = 6,
    Video = 7,
    ChatHistory = 8,
    Location = 9,
    MiniProgram = 10,
    Transfer = 11,
    RedEnvelope = 12,
    Recalled = 13,
    Url = 14,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum ImageType {
    Unspecified = 0,
    Thumbnail = 1,
    Hd = 2,
    Artwork = 3,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomListRequest {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomListResponse {
    #[prost(string, repeated, tag = "1")]
    pub ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomPayloadRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomPayloadResponse {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    #[prost(string, tag = "2")]
    pub topic: ::prost::alloc::string::String,
    #[prost(string, tag = "3")]
    pub avatar: ::prost::alloc::string::String,
    #[prost(string, tag = "4")]
    pub owner_id: ::prost::alloc::string::String,
    #[prost(string, repeated, tag = "5")]
    pub admin_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    #[prost(string, repeated, tag = "6")]
    pub member_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomAddRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    #[prost(string, tag = "2")]
    pub contact_id: ::prost::alloc::string::String,
    #[prost(bool, tag = "3")]
    pub invite_only: bool,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomAddResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomAvatarRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomAvatarResponse {
    ///*
    /// Huan(202011) TODO:
    ///  1. rename to file_box
    ///  2. replace it by FileBoxChunk with stream support
    #[prost(string, tag = "1")]
    pub filebox: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomCreateRequest {
    #[prost(string, repeated, tag = "1")]
    pub contact_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    #[prost(string, tag = "2")]
    pub topic: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomCreateResponse {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomDelRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    #[prost(string, tag = "2")]
    pub contact_id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomDelResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomQuitRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomQuitResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomTopicRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    #[prost(message, optional, tag = "2")]
    pub topic: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomTopicResponse {
    #[prost(message, optional, tag = "1")]
    pub topic: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomQrCodeRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomQrCodeResponse {
    #[prost(string, tag = "1")]
    pub qrcode: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomAnnounceRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    #[prost(message, optional, tag = "2")]
    pub text: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomAnnounceResponse {
    #[prost(message, optional, tag = "1")]
    pub text: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomInvitationPayloadRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    ///*
    /// Huan(202002): `payload` should be removed.
    ///  The puppet server should take the responsibilities
    ///  for storing the unaccepted friend-request payload.
    #[prost(message, optional, tag = "2")]
    pub payload: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomInvitationPayloadResponse {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    #[prost(string, tag = "2")]
    pub inviter_id: ::prost::alloc::string::String,
    #[prost(string, tag = "3")]
    pub topic: ::prost::alloc::string::String,
    #[prost(uint32, tag = "4")]
    pub member_count: u32,
    #[prost(string, repeated, tag = "5")]
    pub member_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    #[prost(uint64, tag = "6")]
    pub timestamp: u64,
    #[prost(string, tag = "7")]
    pub avatar: ::prost::alloc::string::String,
    #[prost(string, tag = "8")]
    pub invitation: ::prost::alloc::string::String,
    #[prost(string, tag = "9")]
    pub receiver_id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomInvitationAcceptRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomInvitationAcceptResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomMemberPayloadRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    #[prost(string, tag = "2")]
    pub member_id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomMemberPayloadResponse {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    #[prost(string, tag = "2")]
    pub room_alias: ::prost::alloc::string::String,
    #[prost(string, tag = "3")]
    pub inviter_id: ::prost::alloc::string::String,
    #[prost(string, tag = "4")]
    pub avatar: ::prost::alloc::string::String,
    #[prost(string, tag = "5")]
    pub name: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomMemberListRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoomMemberListResponse {
    #[prost(string, repeated, tag = "1")]
    pub member_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TagContactAddRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    #[prost(string, tag = "2")]
    pub contact_id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TagContactAddResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TagContactRemoveRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    #[prost(string, tag = "2")]
    pub contact_id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TagContactRemoveResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TagContactDeleteRequest {
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TagContactDeleteResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TagContactListRequest {
    #[prost(message, optional, tag = "1")]
    pub contact_id: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TagContactListResponse {
    #[prost(string, repeated, tag = "1")]
    pub ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}