-
Notifications
You must be signed in to change notification settings - Fork 314
Expand file tree
/
Copy pathstream-chat-android-client.api
More file actions
3474 lines (3269 loc) · 284 KB
/
stream-chat-android-client.api
File metadata and controls
3474 lines (3269 loc) · 284 KB
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
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
public final class io/getstream/chat/android/client/BuildConfig {
public static final field BUILD_TYPE Ljava/lang/String;
public static final field DEBUG Z
public static final field LIBRARY_PACKAGE_NAME Ljava/lang/String;
public static final field STREAM_CHAT_VERSION Ljava/lang/String;
public fun <init> ()V
}
public final class io/getstream/chat/android/client/ChatClient {
public static final field Companion Lio/getstream/chat/android/client/ChatClient$Companion;
public static final field DEFAULT_SORT Lio/getstream/chat/android/models/querysort/QuerySorter;
public static final field RESOLVE_DEPENDENCY_TIMEOUT J
public final fun acceptInvite (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun addDevice (Lio/getstream/chat/android/models/Device;)Lio/getstream/result/call/Call;
public final fun addMembers (Ljava/lang/String;Ljava/lang/String;Lio/getstream/chat/android/client/query/AddMembersParams;)Lio/getstream/result/call/Call;
public final fun addMembers (Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Lio/getstream/chat/android/models/Message;Ljava/lang/Boolean;Ljava/util/Date;Ljava/lang/Boolean;)Lio/getstream/result/call/Call;
public static synthetic fun addMembers$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Lio/getstream/chat/android/models/Message;Ljava/lang/Boolean;Ljava/util/Date;Ljava/lang/Boolean;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun addSocketListener (Lio/getstream/chat/android/client/socket/SocketListener;)V
public final fun appSettings ()Lio/getstream/result/call/Call;
public final fun archiveChannel (Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun banUser (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Integer;)Lio/getstream/result/call/Call;
public final fun blockUser (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun castPollAnswer (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun castPollVote (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun channel (Ljava/lang/String;)Lio/getstream/chat/android/client/channel/ChannelClient;
public final fun channel (Ljava/lang/String;Ljava/lang/String;)Lio/getstream/chat/android/client/channel/ChannelClient;
public final fun clearCacheAndTemporaryFiles (Landroid/content/Context;)Lio/getstream/result/call/Call;
public final fun clearPersistence ()Lio/getstream/result/call/Call;
public final fun closePoll (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun connectAnonymousUser ()Lio/getstream/result/call/Call;
public final fun connectAnonymousUser (Ljava/lang/Long;)Lio/getstream/result/call/Call;
public static synthetic fun connectAnonymousUser$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/Long;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun connectGuestUser (Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun connectGuestUser (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Long;)Lio/getstream/result/call/Call;
public static synthetic fun connectGuestUser$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Long;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun connectUser (Lio/getstream/chat/android/models/User;Lio/getstream/chat/android/client/token/TokenProvider;)Lio/getstream/result/call/Call;
public final fun connectUser (Lio/getstream/chat/android/models/User;Lio/getstream/chat/android/client/token/TokenProvider;Ljava/lang/Long;)Lio/getstream/result/call/Call;
public final fun connectUser (Lio/getstream/chat/android/models/User;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun connectUser (Lio/getstream/chat/android/models/User;Ljava/lang/String;Ljava/lang/Long;)Lio/getstream/result/call/Call;
public static synthetic fun connectUser$default (Lio/getstream/chat/android/client/ChatClient;Lio/getstream/chat/android/models/User;Lio/getstream/chat/android/client/token/TokenProvider;Ljava/lang/Long;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public static synthetic fun connectUser$default (Lio/getstream/chat/android/client/ChatClient;Lio/getstream/chat/android/models/User;Ljava/lang/String;Ljava/lang/Long;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun createChannel (Ljava/lang/String;Ljava/lang/String;Lio/getstream/chat/android/client/query/CreateChannelParams;)Lio/getstream/result/call/Call;
public final fun createChannel (Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/util/Map;)Lio/getstream/result/call/Call;
public final fun createDraftMessage (Ljava/lang/String;Ljava/lang/String;Lio/getstream/chat/android/models/DraftMessage;)Lio/getstream/result/call/Call;
public final fun createPollOption (Ljava/lang/String;Lio/getstream/chat/android/models/PollOption;)Lio/getstream/result/call/Call;
public final fun createReminder (Ljava/lang/String;Ljava/util/Date;)Lio/getstream/result/call/Call;
public final fun deleteChannel (Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun deleteDevice (Lio/getstream/chat/android/models/Device;)Lio/getstream/result/call/Call;
public final fun deleteDraftMessages (Ljava/lang/String;Ljava/lang/String;Lio/getstream/chat/android/models/DraftMessage;)Lio/getstream/result/call/Call;
public final fun deleteFile (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun deleteFile (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun deleteImage (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun deleteImage (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun deleteMessage (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun deleteMessage (Ljava/lang/String;Z)Lio/getstream/result/call/Call;
public static synthetic fun deleteMessage$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;ZILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun deleteMessageForMe (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun deletePoll (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun deletePollOption (Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun deleteReaction (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public static synthetic fun deleteReaction$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun deleteReminder (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun devToken (Ljava/lang/String;)Ljava/lang/String;
public final fun disableSlowMode (Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun disconnect (Z)Lio/getstream/result/call/Call;
public final fun disconnect (ZZ)Lio/getstream/result/call/Call;
public static synthetic fun disconnect$default (Lio/getstream/chat/android/client/ChatClient;ZZILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun disconnectSocket ()Lio/getstream/result/call/Call;
public final fun dismissChannelNotifications (Ljava/lang/String;Ljava/lang/String;)V
public final fun editMessage (Ljava/lang/String;Ljava/lang/String;Lio/getstream/chat/android/models/Message;)Lio/getstream/result/call/Call;
public final fun enableSlowMode (Ljava/lang/String;Ljava/lang/String;I)Lio/getstream/result/call/Call;
public final fun enrichUrl (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun fetchCurrentUser ()Lio/getstream/result/call/Call;
public final fun flagMessage (Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;)Lio/getstream/result/call/Call;
public final fun flagUser (Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;)Lio/getstream/result/call/Call;
public final fun getAppSettings ()Lio/getstream/chat/android/models/AppSettings;
public final fun getChannel (Ljava/lang/String;IIZ)Lio/getstream/result/call/Call;
public final fun getChannel (Ljava/lang/String;Ljava/lang/String;IIZ)Lio/getstream/result/call/Call;
public static synthetic fun getChannel$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;IIZILjava/lang/Object;)Lio/getstream/result/call/Call;
public static synthetic fun getChannel$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;IIZILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun getClientState ()Lio/getstream/chat/android/client/setup/state/ClientState;
public final fun getConnectionId ()Ljava/lang/String;
public final fun getCurrentToken ()Ljava/lang/String;
public final fun getCurrentUser ()Lio/getstream/chat/android/models/User;
public final fun getDevices ()Lio/getstream/result/call/Call;
public final fun getFileAttachments (Ljava/lang/String;Ljava/lang/String;II)Lio/getstream/result/call/Call;
public final fun getGuestToken (Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun getImageAttachments (Ljava/lang/String;Ljava/lang/String;II)Lio/getstream/result/call/Call;
public final fun getLogicRegistry ()Lio/getstream/chat/android/client/channel/state/ChannelStateLogicProvider;
public final fun getMessage (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun getMessagesWithAttachments (Ljava/lang/String;Ljava/lang/String;IILjava/util/List;)Lio/getstream/result/call/Call;
public final fun getNewerReplies (Ljava/lang/String;ILjava/lang/String;)Lio/getstream/result/call/Call;
public static synthetic fun getNewerReplies$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;ILjava/lang/String;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public static final fun getOFFLINE_SUPPORT_ENABLED ()Z
public final fun getPendingMessage (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun getPinnedMessages (Ljava/lang/String;Ljava/lang/String;ILio/getstream/chat/android/models/querysort/QuerySorter;Lio/getstream/chat/android/client/api/models/PinnedMessagesPagination;)Lio/getstream/result/call/Call;
public final fun getPoll (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun getReactions (Ljava/lang/String;II)Lio/getstream/result/call/Call;
public final fun getReplies (Ljava/lang/String;I)Lio/getstream/result/call/Call;
public final fun getRepliesMore (Ljava/lang/String;Ljava/lang/String;I)Lio/getstream/result/call/Call;
public final fun getSyncHistory (Ljava/util/List;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun getSyncHistory (Ljava/util/List;Ljava/util/Date;)Lio/getstream/result/call/Call;
public final fun getThread (Ljava/lang/String;Lio/getstream/chat/android/client/api/models/GetThreadOptions;)Lio/getstream/result/call/Call;
public static synthetic fun getThread$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Lio/getstream/chat/android/client/api/models/GetThreadOptions;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun getUnreadCounts ()Lio/getstream/result/call/Call;
public static final fun getVERSION_PREFIX_HEADER ()Lio/getstream/chat/android/client/header/VersionPrefixHeader;
public static final fun handlePushMessage (Lio/getstream/chat/android/models/PushMessage;)V
public final fun hideChannel (Ljava/lang/String;Ljava/lang/String;Z)Lio/getstream/result/call/Call;
public static synthetic fun hideChannel$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;ZILjava/lang/Object;)Lio/getstream/result/call/Call;
public static final fun instance ()Lio/getstream/chat/android/client/ChatClient;
public final fun inviteMembers (Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Lio/getstream/chat/android/models/Message;Ljava/lang/Boolean;)Lio/getstream/result/call/Call;
public static synthetic fun inviteMembers$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Lio/getstream/chat/android/models/Message;Ljava/lang/Boolean;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public static final fun isInitialized ()Z
public final fun isSocketConnected ()Z
public final fun keystroke (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public static synthetic fun keystroke$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun markAllRead ()Lio/getstream/result/call/Call;
public final fun markMessageAsDelivered (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun markMessageRead (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun markRead (Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun markThreadRead (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun markThreadUnread (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun markUnread (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun markUnread (Ljava/lang/String;Ljava/lang/String;Ljava/util/Date;)Lio/getstream/result/call/Call;
public final fun muteChannel (Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun muteChannel (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Integer;)Lio/getstream/result/call/Call;
public static synthetic fun muteChannel$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Integer;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun muteCurrentUser ()Lio/getstream/result/call/Call;
public final fun muteUser (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun muteUser (Ljava/lang/String;Ljava/lang/Integer;)Lio/getstream/result/call/Call;
public static synthetic fun muteUser$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/Integer;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun partialUpdateMember (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;Ljava/util/List;)Lio/getstream/result/call/Call;
public static synthetic fun partialUpdateMember$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;Ljava/util/List;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun partialUpdateMessage (Ljava/lang/String;Ljava/util/Map;Ljava/util/List;)Lio/getstream/result/call/Call;
public static synthetic fun partialUpdateMessage$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/util/Map;Ljava/util/List;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun partialUpdatePoll (Ljava/lang/String;Ljava/util/Map;Ljava/util/List;)Lio/getstream/result/call/Call;
public static synthetic fun partialUpdatePoll$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/util/Map;Ljava/util/List;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun partialUpdateThread (Ljava/lang/String;Ljava/util/Map;Ljava/util/List;)Lio/getstream/result/call/Call;
public static synthetic fun partialUpdateThread$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/util/Map;Ljava/util/List;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun partialUpdateUser (Ljava/lang/String;Ljava/util/Map;Ljava/util/List;)Lio/getstream/result/call/Call;
public static synthetic fun partialUpdateUser$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/util/Map;Ljava/util/List;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun pinChannel (Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun pinMessage (Lio/getstream/chat/android/models/Message;I)Lio/getstream/result/call/Call;
public final fun pinMessage (Lio/getstream/chat/android/models/Message;Ljava/util/Date;)Lio/getstream/result/call/Call;
public static synthetic fun pinMessage$default (Lio/getstream/chat/android/client/ChatClient;Lio/getstream/chat/android/models/Message;Ljava/util/Date;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun queryActiveLocations ()Lio/getstream/result/call/Call;
public final fun queryBannedUsers (Lio/getstream/chat/android/models/FilterObject;)Lio/getstream/result/call/Call;
public final fun queryBannedUsers (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;)Lio/getstream/result/call/Call;
public final fun queryBannedUsers (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;Ljava/lang/Integer;)Lio/getstream/result/call/Call;
public final fun queryBannedUsers (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;Ljava/lang/Integer;Ljava/lang/Integer;)Lio/getstream/result/call/Call;
public final fun queryBannedUsers (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;Ljava/lang/Integer;Ljava/lang/Integer;Ljava/util/Date;)Lio/getstream/result/call/Call;
public final fun queryBannedUsers (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;Ljava/lang/Integer;Ljava/lang/Integer;Ljava/util/Date;Ljava/util/Date;)Lio/getstream/result/call/Call;
public final fun queryBannedUsers (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;Ljava/lang/Integer;Ljava/lang/Integer;Ljava/util/Date;Ljava/util/Date;Ljava/util/Date;)Lio/getstream/result/call/Call;
public final fun queryBannedUsers (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;Ljava/lang/Integer;Ljava/lang/Integer;Ljava/util/Date;Ljava/util/Date;Ljava/util/Date;Ljava/util/Date;)Lio/getstream/result/call/Call;
public static synthetic fun queryBannedUsers$default (Lio/getstream/chat/android/client/ChatClient;Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;Ljava/lang/Integer;Ljava/lang/Integer;Ljava/util/Date;Ljava/util/Date;Ljava/util/Date;Ljava/util/Date;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun queryBlockedUsers ()Lio/getstream/result/call/Call;
public final fun queryChannel (Ljava/lang/String;Ljava/lang/String;Lio/getstream/chat/android/client/api/models/QueryChannelRequest;Z)Lio/getstream/result/call/Call;
public static synthetic fun queryChannel$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;Lio/getstream/chat/android/client/api/models/QueryChannelRequest;ZILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun queryChannels (Lio/getstream/chat/android/client/api/models/QueryChannelsRequest;)Lio/getstream/result/call/Call;
public final fun queryDrafts (Lio/getstream/chat/android/models/FilterObject;ILjava/lang/String;Lio/getstream/chat/android/models/querysort/QuerySorter;)Lio/getstream/result/call/Call;
public static synthetic fun queryDrafts$default (Lio/getstream/chat/android/client/ChatClient;Lio/getstream/chat/android/models/FilterObject;ILjava/lang/String;Lio/getstream/chat/android/models/querysort/QuerySorter;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun queryMembers (Ljava/lang/String;Ljava/lang/String;IILio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;Ljava/util/List;)Lio/getstream/result/call/Call;
public static synthetic fun queryMembers$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;IILio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;Ljava/util/List;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun queryPollVotes (Ljava/lang/String;Lio/getstream/chat/android/models/FilterObject;Ljava/lang/Integer;Ljava/lang/String;Lio/getstream/chat/android/models/querysort/QuerySorter;)Lio/getstream/result/call/Call;
public static synthetic fun queryPollVotes$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Lio/getstream/chat/android/models/FilterObject;Ljava/lang/Integer;Ljava/lang/String;Lio/getstream/chat/android/models/querysort/QuerySorter;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun queryPolls (Lio/getstream/chat/android/models/FilterObject;Ljava/lang/Integer;Ljava/lang/String;Lio/getstream/chat/android/models/querysort/QuerySorter;)Lio/getstream/result/call/Call;
public static synthetic fun queryPolls$default (Lio/getstream/chat/android/client/ChatClient;Lio/getstream/chat/android/models/FilterObject;Ljava/lang/Integer;Ljava/lang/String;Lio/getstream/chat/android/models/querysort/QuerySorter;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun queryReactions (Ljava/lang/String;Lio/getstream/chat/android/models/FilterObject;Ljava/lang/Integer;Ljava/lang/String;Lio/getstream/chat/android/models/querysort/QuerySorter;)Lio/getstream/result/call/Call;
public static synthetic fun queryReactions$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Lio/getstream/chat/android/models/FilterObject;Ljava/lang/Integer;Ljava/lang/String;Lio/getstream/chat/android/models/querysort/QuerySorter;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun queryReminders (Lio/getstream/chat/android/models/FilterObject;ILjava/lang/String;Lio/getstream/chat/android/models/querysort/QuerySorter;)Lio/getstream/result/call/Call;
public static synthetic fun queryReminders$default (Lio/getstream/chat/android/client/ChatClient;Lio/getstream/chat/android/models/FilterObject;ILjava/lang/String;Lio/getstream/chat/android/models/querysort/QuerySorter;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun queryThreads (Lio/getstream/chat/android/client/api/models/QueryThreadsRequest;)Lio/getstream/result/call/Call;
public final fun queryUsers (Lio/getstream/chat/android/client/api/models/QueryUsersRequest;)Lio/getstream/result/call/Call;
public final fun reconnectSocket ()Lio/getstream/result/call/Call;
public final fun rejectInvite (Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun removeMembers (Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Lio/getstream/chat/android/models/Message;Ljava/lang/Boolean;)Lio/getstream/result/call/Call;
public static synthetic fun removeMembers$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Lio/getstream/chat/android/models/Message;Ljava/lang/Boolean;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun removePollVote (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun removeShadowBan (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun removeSocketListener (Lio/getstream/chat/android/client/socket/SocketListener;)V
public final fun searchMessages (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/FilterObject;Ljava/lang/Integer;Ljava/lang/Integer;Ljava/lang/String;Lio/getstream/chat/android/models/querysort/QuerySorter;)Lio/getstream/result/call/Call;
public static synthetic fun searchMessages$default (Lio/getstream/chat/android/client/ChatClient;Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/FilterObject;Ljava/lang/Integer;Ljava/lang/Integer;Ljava/lang/String;Lio/getstream/chat/android/models/querysort/QuerySorter;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun sendAction (Lio/getstream/chat/android/client/api/models/SendActionRequest;)Lio/getstream/result/call/Call;
public final fun sendEvent (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;)Lio/getstream/result/call/Call;
public static synthetic fun sendEvent$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun sendFile (Ljava/lang/String;Ljava/lang/String;Ljava/io/File;)Lio/getstream/result/call/Call;
public final fun sendFile (Ljava/lang/String;Ljava/lang/String;Ljava/io/File;Lio/getstream/chat/android/client/utils/ProgressCallback;)Lio/getstream/result/call/Call;
public static synthetic fun sendFile$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;Ljava/io/File;Lio/getstream/chat/android/client/utils/ProgressCallback;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun sendGiphy (Lio/getstream/chat/android/models/Message;)Lio/getstream/result/call/Call;
public final fun sendImage (Ljava/lang/String;Ljava/lang/String;Ljava/io/File;)Lio/getstream/result/call/Call;
public final fun sendImage (Ljava/lang/String;Ljava/lang/String;Ljava/io/File;Lio/getstream/chat/android/client/utils/ProgressCallback;)Lio/getstream/result/call/Call;
public static synthetic fun sendImage$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;Ljava/io/File;Lio/getstream/chat/android/client/utils/ProgressCallback;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun sendMessage (Ljava/lang/String;Ljava/lang/String;Lio/getstream/chat/android/models/Message;Z)Lio/getstream/result/call/Call;
public static synthetic fun sendMessage$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;Lio/getstream/chat/android/models/Message;ZILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun sendPoll (Ljava/lang/String;Ljava/lang/String;Lio/getstream/chat/android/models/CreatePollParams;)Lio/getstream/result/call/Call;
public final fun sendReaction (Lio/getstream/chat/android/models/Reaction;Z)Lio/getstream/result/call/Call;
public final fun sendReaction (Lio/getstream/chat/android/models/Reaction;ZLjava/lang/String;)Lio/getstream/result/call/Call;
public final fun sendReaction (Lio/getstream/chat/android/models/Reaction;ZLjava/lang/String;Z)Lio/getstream/result/call/Call;
public static synthetic fun sendReaction$default (Lio/getstream/chat/android/client/ChatClient;Lio/getstream/chat/android/models/Reaction;ZLjava/lang/String;ZILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun sendStaticLocation (Ljava/lang/String;DDLjava/lang/String;)Lio/getstream/result/call/Call;
public final fun setChannelPushPreference (Ljava/lang/String;Lio/getstream/chat/android/models/PushPreferenceLevel;)Lio/getstream/result/call/Call;
public final fun setLogicRegistry (Lio/getstream/chat/android/client/channel/state/ChannelStateLogicProvider;)V
public static final fun setOFFLINE_SUPPORT_ENABLED (Z)V
public final fun setUserPushPreference (Lio/getstream/chat/android/models/PushPreferenceLevel;)Lio/getstream/result/call/Call;
public static final fun setVERSION_PREFIX_HEADER (Lio/getstream/chat/android/client/header/VersionPrefixHeader;)V
public final fun shadowBanUser (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Integer;)Lio/getstream/result/call/Call;
public final fun showChannel (Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun shuffleGiphy (Lio/getstream/chat/android/models/Message;)Lio/getstream/result/call/Call;
public final fun snoozeChannelPushNotifications (Ljava/lang/String;Ljava/util/Date;)Lio/getstream/result/call/Call;
public final fun snoozeUserPushNotifications (Ljava/util/Date;)Lio/getstream/result/call/Call;
public final fun startLiveLocationSharing (Ljava/lang/String;DDLjava/lang/String;Ljava/util/Date;)Lio/getstream/result/call/Call;
public final fun stopLiveLocationSharing (Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun stopTyping (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public static synthetic fun stopTyping$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun stopWatching (Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun subscribe (Lio/getstream/chat/android/client/ChatEventListener;)Lio/getstream/chat/android/client/utils/observable/Disposable;
public final fun subscribeFor (Landroidx/lifecycle/LifecycleOwner;[Ljava/lang/Class;Lio/getstream/chat/android/client/ChatEventListener;)Lio/getstream/chat/android/client/utils/observable/Disposable;
public final fun subscribeFor (Landroidx/lifecycle/LifecycleOwner;[Ljava/lang/String;Lio/getstream/chat/android/client/ChatEventListener;)Lio/getstream/chat/android/client/utils/observable/Disposable;
public final fun subscribeFor ([Ljava/lang/Class;Lio/getstream/chat/android/client/ChatEventListener;)Lio/getstream/chat/android/client/utils/observable/Disposable;
public final fun subscribeFor ([Ljava/lang/String;Lio/getstream/chat/android/client/ChatEventListener;)Lio/getstream/chat/android/client/utils/observable/Disposable;
public final fun subscribeForSingle (Ljava/lang/Class;Lio/getstream/chat/android/client/ChatEventListener;)Lio/getstream/chat/android/client/utils/observable/Disposable;
public final fun subscribeForSingle (Ljava/lang/String;Lio/getstream/chat/android/client/ChatEventListener;)Lio/getstream/chat/android/client/utils/observable/Disposable;
public final fun switchUser (Lio/getstream/chat/android/models/User;Lio/getstream/chat/android/client/token/TokenProvider;)Lio/getstream/result/call/Call;
public final fun switchUser (Lio/getstream/chat/android/models/User;Lio/getstream/chat/android/client/token/TokenProvider;Ljava/lang/Long;)Lio/getstream/result/call/Call;
public final fun switchUser (Lio/getstream/chat/android/models/User;Lio/getstream/chat/android/client/token/TokenProvider;Ljava/lang/Long;Lkotlin/jvm/functions/Function0;)Lio/getstream/result/call/Call;
public final fun switchUser (Lio/getstream/chat/android/models/User;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun switchUser (Lio/getstream/chat/android/models/User;Ljava/lang/String;Ljava/lang/Long;)Lio/getstream/result/call/Call;
public final fun switchUser (Lio/getstream/chat/android/models/User;Ljava/lang/String;Ljava/lang/Long;Lkotlin/jvm/functions/Function0;)Lio/getstream/result/call/Call;
public static synthetic fun switchUser$default (Lio/getstream/chat/android/client/ChatClient;Lio/getstream/chat/android/models/User;Lio/getstream/chat/android/client/token/TokenProvider;Ljava/lang/Long;Lkotlin/jvm/functions/Function0;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public static synthetic fun switchUser$default (Lio/getstream/chat/android/client/ChatClient;Lio/getstream/chat/android/models/User;Ljava/lang/String;Ljava/lang/Long;Lkotlin/jvm/functions/Function0;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun translate (Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun truncateChannel (Ljava/lang/String;Ljava/lang/String;Lio/getstream/chat/android/models/Message;)Lio/getstream/result/call/Call;
public static synthetic fun truncateChannel$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;Lio/getstream/chat/android/models/Message;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun unarchiveChannel (Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun unbanUser (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun unblockUser (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun unflagMessage (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun unflagUser (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun unmuteChannel (Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun unmuteCurrentUser ()Lio/getstream/result/call/Call;
public final fun unmuteUser (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun unpinChannel (Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun unpinMessage (Lio/getstream/chat/android/models/Message;)Lio/getstream/result/call/Call;
public final fun updateChannel (Ljava/lang/String;Ljava/lang/String;Lio/getstream/chat/android/models/Message;Ljava/util/Map;)Lio/getstream/result/call/Call;
public static synthetic fun updateChannel$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;Lio/getstream/chat/android/models/Message;Ljava/util/Map;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun updateChannelPartial (Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;Ljava/util/List;)Lio/getstream/result/call/Call;
public static synthetic fun updateChannelPartial$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;Ljava/util/List;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun updateLiveLocation (Ljava/lang/String;DDLjava/lang/String;)Lio/getstream/result/call/Call;
public final fun updateMessage (Lio/getstream/chat/android/models/Message;)Lio/getstream/result/call/Call;
public final fun updatePoll (Lio/getstream/chat/android/client/api/models/UpdatePollRequest;)Lio/getstream/result/call/Call;
public final fun updatePollOption (Ljava/lang/String;Lio/getstream/chat/android/models/PollOption;)Lio/getstream/result/call/Call;
public final fun updateReminder (Ljava/lang/String;Ljava/util/Date;)Lio/getstream/result/call/Call;
public final fun updateUser (Lio/getstream/chat/android/models/User;)Lio/getstream/result/call/Call;
public final fun updateUsers (Ljava/util/List;)Lio/getstream/result/call/Call;
public final fun uploadFile (Ljava/io/File;)Lio/getstream/result/call/Call;
public final fun uploadFile (Ljava/io/File;Lio/getstream/chat/android/client/utils/ProgressCallback;)Lio/getstream/result/call/Call;
public static synthetic fun uploadFile$default (Lio/getstream/chat/android/client/ChatClient;Ljava/io/File;Lio/getstream/chat/android/client/utils/ProgressCallback;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun uploadImage (Ljava/io/File;)Lio/getstream/result/call/Call;
public final fun uploadImage (Ljava/io/File;Lio/getstream/chat/android/client/utils/ProgressCallback;)Lio/getstream/result/call/Call;
public static synthetic fun uploadImage$default (Lio/getstream/chat/android/client/ChatClient;Ljava/io/File;Lio/getstream/chat/android/client/utils/ProgressCallback;ILjava/lang/Object;)Lio/getstream/result/call/Call;
}
public final class io/getstream/chat/android/client/ChatClient$Builder : io/getstream/chat/android/client/ChatClient$ChatClientBuilder {
public fun <init> (Ljava/lang/String;Landroid/content/Context;)V
public final fun appName (Ljava/lang/String;)Lio/getstream/chat/android/client/ChatClient$Builder;
public final fun appVersion (Ljava/lang/String;)Lio/getstream/chat/android/client/ChatClient$Builder;
public final fun baseUrl (Ljava/lang/String;)Lio/getstream/chat/android/client/ChatClient$Builder;
public fun build ()Lio/getstream/chat/android/client/ChatClient;
public final fun cdn (Lio/getstream/chat/android/client/cdn/CDN;)Lio/getstream/chat/android/client/ChatClient$Builder;
public final fun cdnUrl (Ljava/lang/String;)Lio/getstream/chat/android/client/ChatClient$Builder;
public final fun clientDebugger (Lio/getstream/chat/android/client/debugger/ChatClientDebugger;)Lio/getstream/chat/android/client/ChatClient$Builder;
public final fun config (Lio/getstream/chat/android/client/api/ChatClientConfig;)Lio/getstream/chat/android/client/ChatClient$Builder;
public final fun credentialStorage (Lio/getstream/chat/android/client/user/storage/UserCredentialStorage;)Lio/getstream/chat/android/client/ChatClient$Builder;
public final fun debugRequests (Z)Lio/getstream/chat/android/client/ChatClient$Builder;
public final fun disableDistinctApiCalls ()Lio/getstream/chat/android/client/ChatClient$Builder;
public final fun disableWarmUp ()Lio/getstream/chat/android/client/ChatClient$Builder;
public final fun fileTransformer (Lio/getstream/chat/android/client/uploader/FileTransformer;)Lio/getstream/chat/android/client/ChatClient$Builder;
public final fun fileUploader (Lio/getstream/chat/android/client/uploader/FileUploader;)Lio/getstream/chat/android/client/ChatClient$Builder;
public final fun forceInsecureConnection ()Lio/getstream/chat/android/client/ChatClient$Builder;
public final fun logLevel (Lio/getstream/chat/android/client/logger/ChatLogLevel;)Lio/getstream/chat/android/client/ChatClient$Builder;
public final fun loggerHandler (Lio/getstream/chat/android/client/logger/ChatLoggerHandler;)Lio/getstream/chat/android/client/ChatClient$Builder;
public final fun notifications (Lio/getstream/chat/android/client/notifications/handler/NotificationConfig;)Lio/getstream/chat/android/client/ChatClient$Builder;
public final fun notifications (Lio/getstream/chat/android/client/notifications/handler/NotificationConfig;Lio/getstream/chat/android/client/notifications/handler/NotificationHandler;)Lio/getstream/chat/android/client/ChatClient$Builder;
public static synthetic fun notifications$default (Lio/getstream/chat/android/client/ChatClient$Builder;Lio/getstream/chat/android/client/notifications/handler/NotificationConfig;Lio/getstream/chat/android/client/notifications/handler/NotificationHandler;ILjava/lang/Object;)Lio/getstream/chat/android/client/ChatClient$Builder;
public final fun okHttpClient (Lokhttp3/OkHttpClient;)Lio/getstream/chat/android/client/ChatClient$Builder;
public final fun retryPolicy (Lio/getstream/result/call/retry/RetryPolicy;)Lio/getstream/chat/android/client/ChatClient$Builder;
public final fun sendMessageInterceptor (Lio/getstream/chat/android/client/interceptor/SendMessageInterceptor;)Lio/getstream/chat/android/client/ChatClient$Builder;
public final fun uploadAttachmentsNetworkType (Lio/getstream/chat/android/models/UploadAttachmentsNetworkType;)Lio/getstream/chat/android/client/ChatClient$Builder;
public final fun withApiModelTransformer (Lio/getstream/chat/android/client/transformer/ApiModelTransformers;)Lio/getstream/chat/android/client/ChatClient$Builder;
}
public abstract class io/getstream/chat/android/client/ChatClient$ChatClientBuilder {
public fun build ()Lio/getstream/chat/android/client/ChatClient;
}
public final class io/getstream/chat/android/client/ChatClient$Companion {
public final fun handlePushMessage (Lio/getstream/chat/android/models/PushMessage;)V
public final fun instance ()Lio/getstream/chat/android/client/ChatClient;
public final fun isInitialized ()Z
}
public abstract interface class io/getstream/chat/android/client/ChatEventListener {
public abstract fun onEvent (Lio/getstream/chat/android/client/events/ChatEvent;)V
}
public final class io/getstream/chat/android/client/ClientExtensionsKt {
public static final fun subscribeFor (Lio/getstream/chat/android/client/ChatClient;Landroidx/lifecycle/LifecycleOwner;[Lkotlin/reflect/KClass;Lio/getstream/chat/android/client/ChatEventListener;)Lio/getstream/chat/android/client/utils/observable/Disposable;
public static final fun subscribeFor (Lio/getstream/chat/android/client/ChatClient;[Lkotlin/reflect/KClass;Lio/getstream/chat/android/client/ChatEventListener;)Lio/getstream/chat/android/client/utils/observable/Disposable;
}
public final class io/getstream/chat/android/client/api/ChannelMessageLimit {
public fun <init> (Ljava/lang/String;I)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()I
public final fun copy (Ljava/lang/String;I)Lio/getstream/chat/android/client/api/ChannelMessageLimit;
public static synthetic fun copy$default (Lio/getstream/chat/android/client/api/ChannelMessageLimit;Ljava/lang/String;IILjava/lang/Object;)Lio/getstream/chat/android/client/api/ChannelMessageLimit;
public fun equals (Ljava/lang/Object;)Z
public final fun getBaseLimit ()I
public final fun getChannelType ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/api/ChatClientConfig {
public fun <init> ()V
public fun <init> (Z)V
public fun <init> (ZLjava/util/Set;)V
public fun <init> (ZLjava/util/Set;Z)V
public fun <init> (ZLjava/util/Set;ZZ)V
public fun <init> (ZLjava/util/Set;ZZLio/getstream/chat/android/models/TimeDuration;)V
public fun <init> (ZLjava/util/Set;ZZLio/getstream/chat/android/models/TimeDuration;Lkotlin/jvm/functions/Function0;)V
public fun <init> (ZLjava/util/Set;ZZLio/getstream/chat/android/models/TimeDuration;Lkotlin/jvm/functions/Function0;Lio/getstream/chat/android/client/api/MessageLimitConfig;)V
public fun <init> (ZLjava/util/Set;ZZLio/getstream/chat/android/models/TimeDuration;Lkotlin/jvm/functions/Function0;Lio/getstream/chat/android/client/api/MessageLimitConfig;Z)V
public synthetic fun <init> (ZLjava/util/Set;ZZLio/getstream/chat/android/models/TimeDuration;Lkotlin/jvm/functions/Function0;Lio/getstream/chat/android/client/api/MessageLimitConfig;ZILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Z
public final fun component2 ()Ljava/util/Set;
public final fun component3 ()Z
public final fun component4 ()Z
public final fun component5 ()Lio/getstream/chat/android/models/TimeDuration;
public final fun component6 ()Lkotlin/jvm/functions/Function0;
public final fun component7 ()Lio/getstream/chat/android/client/api/MessageLimitConfig;
public final fun component8 ()Z
public final fun copy (ZLjava/util/Set;ZZLio/getstream/chat/android/models/TimeDuration;Lkotlin/jvm/functions/Function0;Lio/getstream/chat/android/client/api/MessageLimitConfig;Z)Lio/getstream/chat/android/client/api/ChatClientConfig;
public static synthetic fun copy$default (Lio/getstream/chat/android/client/api/ChatClientConfig;ZLjava/util/Set;ZZLio/getstream/chat/android/models/TimeDuration;Lkotlin/jvm/functions/Function0;Lio/getstream/chat/android/client/api/MessageLimitConfig;ZILjava/lang/Object;)Lio/getstream/chat/android/client/api/ChatClientConfig;
public fun equals (Ljava/lang/Object;)Z
public final fun getIgnoredOfflineChannelTypes ()Ljava/util/Set;
public final fun getMessageLimitConfig ()Lio/getstream/chat/android/client/api/MessageLimitConfig;
public final fun getNow ()Lkotlin/jvm/functions/Function0;
public final fun getOfflineEnabled ()Z
public final fun getSyncMaxThreshold ()Lio/getstream/chat/android/models/TimeDuration;
public final fun getUseLegacyChannelLogic ()Z
public final fun getUserPresence ()Z
public fun hashCode ()I
public final fun isAutomaticSyncOnReconnectEnabled ()Z
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/api/MessageLimitConfig {
public fun <init> ()V
public fun <init> (Ljava/util/Set;)V
public synthetic fun <init> (Ljava/util/Set;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/util/Set;
public final fun copy (Ljava/util/Set;)Lio/getstream/chat/android/client/api/MessageLimitConfig;
public static synthetic fun copy$default (Lio/getstream/chat/android/client/api/MessageLimitConfig;Ljava/util/Set;ILjava/lang/Object;)Lio/getstream/chat/android/client/api/MessageLimitConfig;
public fun equals (Ljava/lang/Object;)Z
public final fun getChannelMessageLimits ()Ljava/util/Set;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public abstract class io/getstream/chat/android/client/api/event/BaseChatEventHandler : io/getstream/chat/android/client/api/event/ChatEventHandler {
public fun <init> ()V
public fun handleChannelEvent (Lio/getstream/chat/android/client/events/HasChannel;Lio/getstream/chat/android/models/FilterObject;)Lio/getstream/chat/android/client/api/event/EventHandlingResult;
public fun handleChatEvent (Lio/getstream/chat/android/client/events/ChatEvent;Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/Channel;)Lio/getstream/chat/android/client/api/event/EventHandlingResult;
public fun handleCidEvent (Lio/getstream/chat/android/client/events/CidEvent;Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/Channel;)Lio/getstream/chat/android/client/api/event/EventHandlingResult;
}
public abstract interface class io/getstream/chat/android/client/api/event/ChatEventHandler {
public abstract fun handleChatEvent (Lio/getstream/chat/android/client/events/ChatEvent;Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/Channel;)Lio/getstream/chat/android/client/api/event/EventHandlingResult;
}
public class io/getstream/chat/android/client/api/event/ChatEventHandlerFactory {
public fun <init> ()V
public fun <init> (Lio/getstream/chat/android/client/setup/state/ClientState;)V
public synthetic fun <init> (Lio/getstream/chat/android/client/setup/state/ClientState;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun chatEventHandler (Lkotlinx/coroutines/flow/StateFlow;)Lio/getstream/chat/android/client/api/event/ChatEventHandler;
}
public class io/getstream/chat/android/client/api/event/DefaultChatEventHandler : io/getstream/chat/android/client/api/event/BaseChatEventHandler {
public fun <init> (Lkotlinx/coroutines/flow/StateFlow;Lio/getstream/chat/android/client/setup/state/ClientState;)V
protected final fun addIfChannelIsAbsent (Lio/getstream/chat/android/models/Channel;)Lio/getstream/chat/android/client/api/event/EventHandlingResult;
protected final fun addIfCurrentUserJoinedChannel (Lio/getstream/chat/android/models/Channel;Lio/getstream/chat/android/models/Member;)Lio/getstream/chat/android/client/api/event/EventHandlingResult;
protected final fun getChannels ()Lkotlinx/coroutines/flow/StateFlow;
protected final fun getClientState ()Lio/getstream/chat/android/client/setup/state/ClientState;
public fun handleChannelEvent (Lio/getstream/chat/android/client/events/HasChannel;Lio/getstream/chat/android/models/FilterObject;)Lio/getstream/chat/android/client/api/event/EventHandlingResult;
public fun handleCidEvent (Lio/getstream/chat/android/client/events/CidEvent;Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/Channel;)Lio/getstream/chat/android/client/api/event/EventHandlingResult;
protected final fun removeIfChannelExists (Ljava/lang/String;)Lio/getstream/chat/android/client/api/event/EventHandlingResult;
}
public abstract class io/getstream/chat/android/client/api/event/EventHandlingResult {
}
public final class io/getstream/chat/android/client/api/event/EventHandlingResult$Add : io/getstream/chat/android/client/api/event/EventHandlingResult {
public fun <init> (Lio/getstream/chat/android/models/Channel;)V
public final fun component1 ()Lio/getstream/chat/android/models/Channel;
public final fun copy (Lio/getstream/chat/android/models/Channel;)Lio/getstream/chat/android/client/api/event/EventHandlingResult$Add;
public static synthetic fun copy$default (Lio/getstream/chat/android/client/api/event/EventHandlingResult$Add;Lio/getstream/chat/android/models/Channel;ILjava/lang/Object;)Lio/getstream/chat/android/client/api/event/EventHandlingResult$Add;
public fun equals (Ljava/lang/Object;)Z
public final fun getChannel ()Lio/getstream/chat/android/models/Channel;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/api/event/EventHandlingResult$Remove : io/getstream/chat/android/client/api/event/EventHandlingResult {
public fun <init> (Ljava/lang/String;)V
public final fun component1 ()Ljava/lang/String;
public final fun copy (Ljava/lang/String;)Lio/getstream/chat/android/client/api/event/EventHandlingResult$Remove;
public static synthetic fun copy$default (Lio/getstream/chat/android/client/api/event/EventHandlingResult$Remove;Ljava/lang/String;ILjava/lang/Object;)Lio/getstream/chat/android/client/api/event/EventHandlingResult$Remove;
public fun equals (Ljava/lang/Object;)Z
public final fun getCid ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/api/event/EventHandlingResult$Skip : io/getstream/chat/android/client/api/event/EventHandlingResult {
public static final field INSTANCE Lio/getstream/chat/android/client/api/event/EventHandlingResult$Skip;
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/api/event/EventHandlingResult$WatchAndAdd : io/getstream/chat/android/client/api/event/EventHandlingResult {
public fun <init> (Ljava/lang/String;)V
public final fun component1 ()Ljava/lang/String;
public final fun copy (Ljava/lang/String;)Lio/getstream/chat/android/client/api/event/EventHandlingResult$WatchAndAdd;
public static synthetic fun copy$default (Lio/getstream/chat/android/client/api/event/EventHandlingResult$WatchAndAdd;Ljava/lang/String;ILjava/lang/Object;)Lio/getstream/chat/android/client/api/event/EventHandlingResult$WatchAndAdd;
public fun equals (Ljava/lang/Object;)Z
public final fun getCid ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/api/models/GetThreadOptions {
public fun <init> ()V
public fun <init> (Z)V
public fun <init> (ZI)V
public fun <init> (ZII)V
public fun <init> (ZIII)V
public synthetic fun <init> (ZIIIILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Z
public final fun component2 ()I
public final fun component3 ()I
public final fun component4 ()I
public final fun copy (ZIII)Lio/getstream/chat/android/client/api/models/GetThreadOptions;
public static synthetic fun copy$default (Lio/getstream/chat/android/client/api/models/GetThreadOptions;ZIIIILjava/lang/Object;)Lio/getstream/chat/android/client/api/models/GetThreadOptions;
public fun equals (Ljava/lang/Object;)Z
public final fun getMemberLimit ()I
public final fun getParticipantLimit ()I
public final fun getReplyLimit ()I
public final fun getWatch ()Z
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/api/models/Pagination : java/lang/Enum {
public static final field AROUND_ID Lio/getstream/chat/android/client/api/models/Pagination;
public static final field GREATER_THAN Lio/getstream/chat/android/client/api/models/Pagination;
public static final field GREATER_THAN_OR_EQUAL Lio/getstream/chat/android/client/api/models/Pagination;
public static final field LESS_THAN Lio/getstream/chat/android/client/api/models/Pagination;
public static final field LESS_THAN_OR_EQUAL Lio/getstream/chat/android/client/api/models/Pagination;
public static fun getEntries ()Lkotlin/enums/EnumEntries;
public fun toString ()Ljava/lang/String;
public static fun valueOf (Ljava/lang/String;)Lio/getstream/chat/android/client/api/models/Pagination;
public static fun values ()[Lio/getstream/chat/android/client/api/models/Pagination;
}
public abstract class io/getstream/chat/android/client/api/models/PinnedMessagesPagination {
}
public final class io/getstream/chat/android/client/api/models/PinnedMessagesPagination$AfterDate : io/getstream/chat/android/client/api/models/PinnedMessagesPagination {
public fun <init> (Ljava/util/Date;Z)V
public final fun component1 ()Ljava/util/Date;
public final fun component2 ()Z
public final fun copy (Ljava/util/Date;Z)Lio/getstream/chat/android/client/api/models/PinnedMessagesPagination$AfterDate;
public static synthetic fun copy$default (Lio/getstream/chat/android/client/api/models/PinnedMessagesPagination$AfterDate;Ljava/util/Date;ZILjava/lang/Object;)Lio/getstream/chat/android/client/api/models/PinnedMessagesPagination$AfterDate;
public fun equals (Ljava/lang/Object;)Z
public final fun getDate ()Ljava/util/Date;
public final fun getInclusive ()Z
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/api/models/PinnedMessagesPagination$AfterMessage : io/getstream/chat/android/client/api/models/PinnedMessagesPagination {
public fun <init> (Ljava/lang/String;Z)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Z
public final fun copy (Ljava/lang/String;Z)Lio/getstream/chat/android/client/api/models/PinnedMessagesPagination$AfterMessage;
public static synthetic fun copy$default (Lio/getstream/chat/android/client/api/models/PinnedMessagesPagination$AfterMessage;Ljava/lang/String;ZILjava/lang/Object;)Lio/getstream/chat/android/client/api/models/PinnedMessagesPagination$AfterMessage;
public fun equals (Ljava/lang/Object;)Z
public final fun getInclusive ()Z
public final fun getMessageId ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/api/models/PinnedMessagesPagination$AroundDate : io/getstream/chat/android/client/api/models/PinnedMessagesPagination {
public fun <init> (Ljava/util/Date;)V
public final fun component1 ()Ljava/util/Date;
public final fun copy (Ljava/util/Date;)Lio/getstream/chat/android/client/api/models/PinnedMessagesPagination$AroundDate;
public static synthetic fun copy$default (Lio/getstream/chat/android/client/api/models/PinnedMessagesPagination$AroundDate;Ljava/util/Date;ILjava/lang/Object;)Lio/getstream/chat/android/client/api/models/PinnedMessagesPagination$AroundDate;
public fun equals (Ljava/lang/Object;)Z
public final fun getDate ()Ljava/util/Date;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/api/models/PinnedMessagesPagination$AroundMessage : io/getstream/chat/android/client/api/models/PinnedMessagesPagination {
public fun <init> (Ljava/lang/String;)V
public final fun component1 ()Ljava/lang/String;
public final fun copy (Ljava/lang/String;)Lio/getstream/chat/android/client/api/models/PinnedMessagesPagination$AroundMessage;
public static synthetic fun copy$default (Lio/getstream/chat/android/client/api/models/PinnedMessagesPagination$AroundMessage;Ljava/lang/String;ILjava/lang/Object;)Lio/getstream/chat/android/client/api/models/PinnedMessagesPagination$AroundMessage;
public fun equals (Ljava/lang/Object;)Z
public final fun getMessageId ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/api/models/PinnedMessagesPagination$BeforeDate : io/getstream/chat/android/client/api/models/PinnedMessagesPagination {
public fun <init> (Ljava/util/Date;Z)V
public final fun component1 ()Ljava/util/Date;
public final fun component2 ()Z
public final fun copy (Ljava/util/Date;Z)Lio/getstream/chat/android/client/api/models/PinnedMessagesPagination$BeforeDate;
public static synthetic fun copy$default (Lio/getstream/chat/android/client/api/models/PinnedMessagesPagination$BeforeDate;Ljava/util/Date;ZILjava/lang/Object;)Lio/getstream/chat/android/client/api/models/PinnedMessagesPagination$BeforeDate;
public fun equals (Ljava/lang/Object;)Z
public final fun getDate ()Ljava/util/Date;
public final fun getInclusive ()Z
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/api/models/PinnedMessagesPagination$BeforeMessage : io/getstream/chat/android/client/api/models/PinnedMessagesPagination {
public fun <init> (Ljava/lang/String;Z)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Z
public final fun copy (Ljava/lang/String;Z)Lio/getstream/chat/android/client/api/models/PinnedMessagesPagination$BeforeMessage;
public static synthetic fun copy$default (Lio/getstream/chat/android/client/api/models/PinnedMessagesPagination$BeforeMessage;Ljava/lang/String;ZILjava/lang/Object;)Lio/getstream/chat/android/client/api/models/PinnedMessagesPagination$BeforeMessage;
public fun equals (Ljava/lang/Object;)Z
public final fun getInclusive ()Z
public final fun getMessageId ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public class io/getstream/chat/android/client/api/models/QueryChannelRequest : io/getstream/chat/android/client/api/models/ChannelRequest {
public fun <init> ()V
public fun equals (Ljava/lang/Object;)Z
public final fun filteringOlderMessages ()Z
public final fun getData ()Ljava/util/Map;
public final fun getMembers ()Ljava/util/Map;
public final fun getMessages ()Ljava/util/Map;
public fun getPresence ()Z
public fun getState ()Z
public fun getWatch ()Z
public final fun getWatchers ()Ljava/util/Map;
public fun hashCode ()I
public final fun isFilteringAroundIdMessages ()Z
public final fun isFilteringMessages ()Z
public final fun isFilteringNewerMessages ()Z
public final fun membersLimit ()I
public final fun membersOffset ()I
public final fun messagesLimit ()I
public final fun pagination ()Lkotlin/Pair;
public fun setPresence (Z)V
public fun setState (Z)V
public fun setWatch (Z)V
public fun toString ()Ljava/lang/String;
public final fun watchersLimit ()I
public final fun watchersOffset ()I
public fun withData (Ljava/util/Map;)Lio/getstream/chat/android/client/api/models/QueryChannelRequest;
public fun withMembers (II)Lio/getstream/chat/android/client/api/models/QueryChannelRequest;
public fun withMessages (I)Lio/getstream/chat/android/client/api/models/QueryChannelRequest;
public fun withMessages (Lio/getstream/chat/android/client/api/models/Pagination;Ljava/lang/String;I)Lio/getstream/chat/android/client/api/models/QueryChannelRequest;
public fun withWatchers (II)Lio/getstream/chat/android/client/api/models/QueryChannelRequest;
}
public final class io/getstream/chat/android/client/api/models/QueryChannelsRequest : io/getstream/chat/android/client/api/models/ChannelRequest {
public fun <init> (Lio/getstream/chat/android/models/FilterObject;IILio/getstream/chat/android/models/querysort/QuerySorter;Ljava/lang/Integer;Ljava/lang/Integer;)V
public synthetic fun <init> (Lio/getstream/chat/android/models/FilterObject;IILio/getstream/chat/android/models/querysort/QuerySorter;Ljava/lang/Integer;Ljava/lang/Integer;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Lio/getstream/chat/android/models/FilterObject;
public final fun component2 ()I
public final fun component3 ()I
public final fun component4 ()Lio/getstream/chat/android/models/querysort/QuerySorter;
public final fun component5 ()Ljava/lang/Integer;
public final fun component6 ()Ljava/lang/Integer;
public final fun copy (Lio/getstream/chat/android/models/FilterObject;IILio/getstream/chat/android/models/querysort/QuerySorter;Ljava/lang/Integer;Ljava/lang/Integer;)Lio/getstream/chat/android/client/api/models/QueryChannelsRequest;
public static synthetic fun copy$default (Lio/getstream/chat/android/client/api/models/QueryChannelsRequest;Lio/getstream/chat/android/models/FilterObject;IILio/getstream/chat/android/models/querysort/QuerySorter;Ljava/lang/Integer;Ljava/lang/Integer;ILjava/lang/Object;)Lio/getstream/chat/android/client/api/models/QueryChannelsRequest;
public fun equals (Ljava/lang/Object;)Z
public final fun getFilter ()Lio/getstream/chat/android/models/FilterObject;
public final fun getLimit ()I
public final fun getMemberLimit ()Ljava/lang/Integer;
public final fun getMessageLimit ()Ljava/lang/Integer;
public final fun getOffset ()I
public fun getPresence ()Z
public final fun getQuerySort ()Lio/getstream/chat/android/models/querysort/QuerySorter;
public final fun getSort ()Ljava/util/List;
public fun getState ()Z
public fun getWatch ()Z
public fun hashCode ()I
public final fun isFirstPage ()Z
public final fun setLimit (I)V
public final fun setMemberLimit (Ljava/lang/Integer;)V
public final fun setMessageLimit (Ljava/lang/Integer;)V
public final fun setOffset (I)V
public fun setPresence (Z)V
public fun setState (Z)V
public fun setWatch (Z)V
public fun toString ()Ljava/lang/String;
public final fun withLimit (I)Lio/getstream/chat/android/client/api/models/QueryChannelsRequest;
public final fun withMessages (I)Lio/getstream/chat/android/client/api/models/QueryChannelsRequest;
public final fun withOffset (I)Lio/getstream/chat/android/client/api/models/QueryChannelsRequest;
}
public final class io/getstream/chat/android/client/api/models/QueryThreadsRequest {
public static final field Companion Lio/getstream/chat/android/client/api/models/QueryThreadsRequest$Companion;
public fun <init> ()V
public fun <init> (Lio/getstream/chat/android/models/FilterObject;)V
public fun <init> (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;)V
public fun <init> (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;Z)V
public fun <init> (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;ZI)V
public fun <init> (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;ZII)V
public fun <init> (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;ZIILjava/lang/String;)V
public fun <init> (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;ZIILjava/lang/String;I)V
public fun <init> (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;ZIILjava/lang/String;ILjava/lang/String;)V
public fun <init> (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;ZIILjava/lang/String;ILjava/lang/String;I)V
public synthetic fun <init> (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;ZIILjava/lang/String;ILjava/lang/String;IILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Lio/getstream/chat/android/models/FilterObject;
public final fun component2 ()Lio/getstream/chat/android/models/querysort/QuerySorter;
public final fun component3 ()Z
public final fun component4 ()I
public final fun component5 ()I
public final fun component6 ()Ljava/lang/String;
public final fun component7 ()I
public final fun component8 ()Ljava/lang/String;
public final fun component9 ()I
public final fun copy (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;ZIILjava/lang/String;ILjava/lang/String;I)Lio/getstream/chat/android/client/api/models/QueryThreadsRequest;
public static synthetic fun copy$default (Lio/getstream/chat/android/client/api/models/QueryThreadsRequest;Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;ZIILjava/lang/String;ILjava/lang/String;IILjava/lang/Object;)Lio/getstream/chat/android/client/api/models/QueryThreadsRequest;
public fun equals (Ljava/lang/Object;)Z
public final fun getFilter ()Lio/getstream/chat/android/models/FilterObject;
public final fun getLimit ()I
public final fun getMemberLimit ()I
public final fun getNext ()Ljava/lang/String;
public final fun getParticipantLimit ()I
public final fun getPrev ()Ljava/lang/String;
public final fun getReplyLimit ()I
public final fun getSort ()Lio/getstream/chat/android/models/querysort/QuerySorter;
public final fun getWatch ()Z
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/api/models/QueryThreadsRequest$Companion {
}
public final class io/getstream/chat/android/client/api/models/QueryUsersRequest {
public fun <init> (Lio/getstream/chat/android/models/FilterObject;II)V
public fun <init> (Lio/getstream/chat/android/models/FilterObject;IILio/getstream/chat/android/models/querysort/QuerySorter;)V
public fun <init> (Lio/getstream/chat/android/models/FilterObject;IILio/getstream/chat/android/models/querysort/QuerySorter;Z)V
public synthetic fun <init> (Lio/getstream/chat/android/models/FilterObject;IILio/getstream/chat/android/models/querysort/QuerySorter;ZILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Lio/getstream/chat/android/models/FilterObject;
public final fun component2 ()I
public final fun component3 ()I
public final fun component4 ()Lio/getstream/chat/android/models/querysort/QuerySorter;
public final fun component5 ()Z
public final fun copy (Lio/getstream/chat/android/models/FilterObject;IILio/getstream/chat/android/models/querysort/QuerySorter;Z)Lio/getstream/chat/android/client/api/models/QueryUsersRequest;
public static synthetic fun copy$default (Lio/getstream/chat/android/client/api/models/QueryUsersRequest;Lio/getstream/chat/android/models/FilterObject;IILio/getstream/chat/android/models/querysort/QuerySorter;ZILjava/lang/Object;)Lio/getstream/chat/android/client/api/models/QueryUsersRequest;
public fun equals (Ljava/lang/Object;)Z
public final fun getFilter ()Lio/getstream/chat/android/models/FilterObject;
public final fun getLimit ()I
public final fun getOffset ()I
public final fun getPresence ()Z
public final fun getQuerySort ()Lio/getstream/chat/android/models/querysort/QuerySorter;
public final fun getSort ()Ljava/util/List;
public fun hashCode ()I
public final fun setFilter (Lio/getstream/chat/android/models/FilterObject;)V
public final fun setPresence (Z)V
public final fun setQuerySort (Lio/getstream/chat/android/models/querysort/QuerySorter;)V
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/api/models/SearchMessagesRequest {
public fun <init> (Ljava/lang/Integer;Ljava/lang/Integer;Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/FilterObject;)V
public fun <init> (Ljava/lang/Integer;Ljava/lang/Integer;Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/FilterObject;Ljava/lang/String;)V
public fun <init> (Ljava/lang/Integer;Ljava/lang/Integer;Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/FilterObject;Ljava/lang/String;Lio/getstream/chat/android/models/querysort/QuerySorter;)V
public synthetic fun <init> (Ljava/lang/Integer;Ljava/lang/Integer;Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/FilterObject;Ljava/lang/String;Lio/getstream/chat/android/models/querysort/QuerySorter;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/Integer;
public final fun component2 ()Ljava/lang/Integer;
public final fun component3 ()Lio/getstream/chat/android/models/FilterObject;
public final fun component4 ()Lio/getstream/chat/android/models/FilterObject;
public final fun component5 ()Ljava/lang/String;
public final fun component6 ()Lio/getstream/chat/android/models/querysort/QuerySorter;
public final fun copy (Ljava/lang/Integer;Ljava/lang/Integer;Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/FilterObject;Ljava/lang/String;Lio/getstream/chat/android/models/querysort/QuerySorter;)Lio/getstream/chat/android/client/api/models/SearchMessagesRequest;
public static synthetic fun copy$default (Lio/getstream/chat/android/client/api/models/SearchMessagesRequest;Ljava/lang/Integer;Ljava/lang/Integer;Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/FilterObject;Ljava/lang/String;Lio/getstream/chat/android/models/querysort/QuerySorter;ILjava/lang/Object;)Lio/getstream/chat/android/client/api/models/SearchMessagesRequest;
public fun equals (Ljava/lang/Object;)Z
public final fun getChannelFilter ()Lio/getstream/chat/android/models/FilterObject;
public final fun getLimit ()Ljava/lang/Integer;
public final fun getMessageFilter ()Lio/getstream/chat/android/models/FilterObject;
public final fun getNext ()Ljava/lang/String;
public final fun getOffset ()Ljava/lang/Integer;
public final fun getQuerySort ()Lio/getstream/chat/android/models/querysort/QuerySorter;
public final fun getSort ()Ljava/util/List;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/api/models/SendActionRequest {
public fun <init> (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Ljava/lang/String;
public final fun component3 ()Ljava/lang/String;
public final fun component4 ()Ljava/util/Map;
public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;)Lio/getstream/chat/android/client/api/models/SendActionRequest;
public static synthetic fun copy$default (Lio/getstream/chat/android/client/api/models/SendActionRequest;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;ILjava/lang/Object;)Lio/getstream/chat/android/client/api/models/SendActionRequest;
public fun equals (Ljava/lang/Object;)Z
public final fun getChannelId ()Ljava/lang/String;
public final fun getFormData ()Ljava/util/Map;
public final fun getMessageId ()Ljava/lang/String;
public final fun getType ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/api/models/UpdatePollRequest {
public fun <init> (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/String;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Integer;Ljava/util/List;Lio/getstream/chat/android/models/VotingVisibility;Ljava/util/Map;)V
public synthetic fun <init> (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/String;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Integer;Ljava/util/List;Lio/getstream/chat/android/models/VotingVisibility;Ljava/util/Map;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
public final fun component10 ()Lio/getstream/chat/android/models/VotingVisibility;
public final fun component11 ()Ljava/util/Map;
public final fun component2 ()Ljava/lang/String;
public final fun component3 ()Ljava/lang/Boolean;
public final fun component4 ()Ljava/lang/Boolean;
public final fun component5 ()Ljava/lang/String;
public final fun component6 ()Ljava/lang/Boolean;
public final fun component7 ()Ljava/lang/Boolean;
public final fun component8 ()Ljava/lang/Integer;
public final fun component9 ()Ljava/util/List;
public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/String;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Integer;Ljava/util/List;Lio/getstream/chat/android/models/VotingVisibility;Ljava/util/Map;)Lio/getstream/chat/android/client/api/models/UpdatePollRequest;
public static synthetic fun copy$default (Lio/getstream/chat/android/client/api/models/UpdatePollRequest;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/String;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Integer;Ljava/util/List;Lio/getstream/chat/android/models/VotingVisibility;Ljava/util/Map;ILjava/lang/Object;)Lio/getstream/chat/android/client/api/models/UpdatePollRequest;
public fun equals (Ljava/lang/Object;)Z
public final fun getAllowAnswers ()Ljava/lang/Boolean;
public final fun getAllowUserSuggestedOptions ()Ljava/lang/Boolean;
public final fun getDescription ()Ljava/lang/String;
public final fun getEnforceUniqueVote ()Ljava/lang/Boolean;
public final fun getExtraData ()Ljava/util/Map;
public final fun getId ()Ljava/lang/String;
public final fun getMaxVotesAllowed ()Ljava/lang/Integer;
public final fun getName ()Ljava/lang/String;
public final fun getOptions ()Ljava/util/List;
public final fun getVotingVisibility ()Lio/getstream/chat/android/models/VotingVisibility;
public fun hashCode ()I
public final fun isClosed ()Ljava/lang/Boolean;
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/api/models/WatchChannelRequest : io/getstream/chat/android/client/api/models/QueryChannelRequest {
public fun <init> ()V
public synthetic fun withData (Ljava/util/Map;)Lio/getstream/chat/android/client/api/models/QueryChannelRequest;
public fun withData (Ljava/util/Map;)Lio/getstream/chat/android/client/api/models/WatchChannelRequest;
public synthetic fun withMembers (II)Lio/getstream/chat/android/client/api/models/QueryChannelRequest;
public fun withMembers (II)Lio/getstream/chat/android/client/api/models/WatchChannelRequest;
public synthetic fun withMessages (I)Lio/getstream/chat/android/client/api/models/QueryChannelRequest;
public fun withMessages (I)Lio/getstream/chat/android/client/api/models/WatchChannelRequest;
public synthetic fun withMessages (Lio/getstream/chat/android/client/api/models/Pagination;Ljava/lang/String;I)Lio/getstream/chat/android/client/api/models/QueryChannelRequest;
public fun withMessages (Lio/getstream/chat/android/client/api/models/Pagination;Ljava/lang/String;I)Lio/getstream/chat/android/client/api/models/WatchChannelRequest;
public synthetic fun withWatchers (II)Lio/getstream/chat/android/client/api/models/QueryChannelRequest;
public fun withWatchers (II)Lio/getstream/chat/android/client/api/models/WatchChannelRequest;
}
public abstract class io/getstream/chat/android/client/api/state/ChannelsStateData {
}
public final class io/getstream/chat/android/client/api/state/ChannelsStateData$Loading : io/getstream/chat/android/client/api/state/ChannelsStateData {
public static final field INSTANCE Lio/getstream/chat/android/client/api/state/ChannelsStateData$Loading;
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/api/state/ChannelsStateData$NoQueryActive : io/getstream/chat/android/client/api/state/ChannelsStateData {
public static final field INSTANCE Lio/getstream/chat/android/client/api/state/ChannelsStateData$NoQueryActive;
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/api/state/ChannelsStateData$OfflineNoResults : io/getstream/chat/android/client/api/state/ChannelsStateData {
public static final field INSTANCE Lio/getstream/chat/android/client/api/state/ChannelsStateData$OfflineNoResults;
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/api/state/ChannelsStateData$Result : io/getstream/chat/android/client/api/state/ChannelsStateData {
public fun <init> (Ljava/util/List;)V
public final fun component1 ()Ljava/util/List;
public final fun copy (Ljava/util/List;)Lio/getstream/chat/android/client/api/state/ChannelsStateData$Result;
public static synthetic fun copy$default (Lio/getstream/chat/android/client/api/state/ChannelsStateData$Result;Ljava/util/List;ILjava/lang/Object;)Lio/getstream/chat/android/client/api/state/ChannelsStateData$Result;
public fun equals (Ljava/lang/Object;)Z
public final fun getChannels ()Ljava/util/List;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/api/state/ChatClientExtensions {
public static final fun cancelEphemeralMessage (Lio/getstream/chat/android/client/ChatClient;Lio/getstream/chat/android/models/Message;)Lio/getstream/result/call/Call;
public static final fun downloadAttachment (Lio/getstream/chat/android/client/ChatClient;Landroid/content/Context;Lio/getstream/chat/android/models/Attachment;)Lio/getstream/result/call/Call;
public static final fun getGlobalState (Lio/getstream/chat/android/client/ChatClient;)Lio/getstream/chat/android/client/api/state/GlobalState;
public static final fun getGlobalStateFlow (Lio/getstream/chat/android/client/ChatClient;)Lkotlinx/coroutines/flow/Flow;
public static final fun getMessageUsingCache (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;)Lio/getstream/result/call/Call;
public static final fun getRepliesAsState (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;IZLkotlin/coroutines/Continuation;)Ljava/lang/Object;
public static final fun getRepliesAsState (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;IZLkotlinx/coroutines/CoroutineScope;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
public static synthetic fun getRepliesAsState$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;IZLkotlinx/coroutines/CoroutineScope;Lkotlin/coroutines/Continuation;ILjava/lang/Object;)Ljava/lang/Object;
public static final fun getState (Lio/getstream/chat/android/client/ChatClient;)Lio/getstream/chat/android/client/api/state/StateRegistry;
public static final fun loadMessageById (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public static final fun loadMessagesAroundId (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public static final fun loadNewerMessages (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Ljava/lang/String;I)Lio/getstream/result/call/Call;
public static final fun loadNewestMessages (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;IZ)Lio/getstream/result/call/Call;
public static synthetic fun loadNewestMessages$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;IZILjava/lang/Object;)Lio/getstream/result/call/Call;
public static final fun loadOlderMessages (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;I)Lio/getstream/result/call/Call;
public static final fun queryChannelsAsState (Lio/getstream/chat/android/client/ChatClient;Lio/getstream/chat/android/client/api/models/QueryChannelsRequest;)Lkotlinx/coroutines/flow/StateFlow;
public static final fun queryChannelsAsState (Lio/getstream/chat/android/client/ChatClient;Lio/getstream/chat/android/client/api/models/QueryChannelsRequest;Lio/getstream/chat/android/client/api/event/ChatEventHandlerFactory;)Lkotlinx/coroutines/flow/StateFlow;
public static final fun queryChannelsAsState (Lio/getstream/chat/android/client/ChatClient;Lio/getstream/chat/android/client/api/models/QueryChannelsRequest;Lio/getstream/chat/android/client/api/event/ChatEventHandlerFactory;Lkotlinx/coroutines/CoroutineScope;)Lkotlinx/coroutines/flow/StateFlow;
public static synthetic fun queryChannelsAsState$default (Lio/getstream/chat/android/client/ChatClient;Lio/getstream/chat/android/client/api/models/QueryChannelsRequest;Lio/getstream/chat/android/client/api/event/ChatEventHandlerFactory;Lkotlinx/coroutines/CoroutineScope;ILjava/lang/Object;)Lkotlinx/coroutines/flow/StateFlow;
public static final fun queryThreadsAsState (Lio/getstream/chat/android/client/ChatClient;Lio/getstream/chat/android/client/api/models/QueryThreadsRequest;Lkotlinx/coroutines/CoroutineScope;)Lkotlinx/coroutines/flow/StateFlow;
public static synthetic fun queryThreadsAsState$default (Lio/getstream/chat/android/client/ChatClient;Lio/getstream/chat/android/client/api/models/QueryThreadsRequest;Lkotlinx/coroutines/CoroutineScope;ILjava/lang/Object;)Lkotlinx/coroutines/flow/StateFlow;
public static final fun setMessageForReply (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;Lio/getstream/chat/android/models/Message;)Lio/getstream/result/call/Call;
public static final fun watchChannelAsState (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;I)Lkotlinx/coroutines/flow/StateFlow;
public static final fun watchChannelAsState (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;ILkotlinx/coroutines/CoroutineScope;)Lkotlinx/coroutines/flow/StateFlow;
public static synthetic fun watchChannelAsState$default (Lio/getstream/chat/android/client/ChatClient;Ljava/lang/String;ILkotlinx/coroutines/CoroutineScope;ILjava/lang/Object;)Lkotlinx/coroutines/flow/StateFlow;
}
public class io/getstream/chat/android/client/api/state/Event {
public fun <init> (Ljava/lang/Object;)V
public final fun getContentIfNotHandled ()Ljava/lang/Object;
public final fun getHasBeenHandled ()Z
public final fun peekContent ()Ljava/lang/Object;
}
public final class io/getstream/chat/android/client/api/state/EventObserver : androidx/lifecycle/Observer {
public fun <init> (Lkotlin/jvm/functions/Function1;)V
public fun onChanged (Lio/getstream/chat/android/client/api/state/Event;)V
public synthetic fun onChanged (Ljava/lang/Object;)V
}
public abstract interface class io/getstream/chat/android/client/api/state/GlobalState {
public abstract fun getActiveLiveLocations ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getBanned ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getBlockedUserIds ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getChannelDraftMessages ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getChannelMutes ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getChannelUnreadCount ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getCurrentUserActiveLiveLocations ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getMuted ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getThreadDraftMessages ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getTotalUnreadCount ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getTypingChannels ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getUnreadThreadsCount ()Lkotlinx/coroutines/flow/StateFlow;
}
public abstract interface class io/getstream/chat/android/client/api/state/QueryChannelsState {
public abstract fun getChannels ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getChannelsStateData ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getChatEventHandlerFactory ()Lio/getstream/chat/android/client/api/event/ChatEventHandlerFactory;
public abstract fun getCurrentRequest ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getEndOfChannels ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getFilter ()Lio/getstream/chat/android/models/FilterObject;
public abstract fun getLoading ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getLoadingMore ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getNextPageRequest ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getRecoveryNeeded ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getSort ()Lio/getstream/chat/android/models/querysort/QuerySorter;
public abstract fun setChatEventHandlerFactory (Lio/getstream/chat/android/client/api/event/ChatEventHandlerFactory;)V
}
public abstract interface class io/getstream/chat/android/client/api/state/QueryThreadsState {
public abstract fun getFilter ()Lio/getstream/chat/android/models/FilterObject;
public abstract fun getLoading ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getLoadingError ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getLoadingMore ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getNext ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getSort ()Lio/getstream/chat/android/models/querysort/QuerySorter;
public abstract fun getThreads ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getUnseenThreadIds ()Lkotlinx/coroutines/flow/StateFlow;
}
public final class io/getstream/chat/android/client/api/state/StateRegistry {
public fun <init> (Lkotlinx/coroutines/flow/StateFlow;Lkotlinx/coroutines/flow/StateFlow;Lkotlinx/coroutines/flow/StateFlow;Lkotlinx/coroutines/Job;Lkotlin/jvm/functions/Function0;Lkotlinx/coroutines/CoroutineScope;Lio/getstream/chat/android/client/api/MessageLimitConfig;)V
public fun <init> (Lkotlinx/coroutines/flow/StateFlow;Lkotlinx/coroutines/flow/StateFlow;Lkotlinx/coroutines/flow/StateFlow;Lkotlinx/coroutines/Job;Lkotlin/jvm/functions/Function0;Lkotlinx/coroutines/CoroutineScope;Lio/getstream/chat/android/client/api/MessageLimitConfig;Lkotlinx/coroutines/flow/StateFlow;)V
public fun <init> (Lkotlinx/coroutines/flow/StateFlow;Lkotlinx/coroutines/flow/StateFlow;Lkotlinx/coroutines/flow/StateFlow;Lkotlinx/coroutines/Job;Lkotlin/jvm/functions/Function0;Lkotlinx/coroutines/CoroutineScope;Lio/getstream/chat/android/client/api/MessageLimitConfig;Lkotlinx/coroutines/flow/StateFlow;Z)V
public synthetic fun <init> (Lkotlinx/coroutines/flow/StateFlow;Lkotlinx/coroutines/flow/StateFlow;Lkotlinx/coroutines/flow/StateFlow;Lkotlinx/coroutines/Job;Lkotlin/jvm/functions/Function0;Lkotlinx/coroutines/CoroutineScope;Lio/getstream/chat/android/client/api/MessageLimitConfig;Lkotlinx/coroutines/flow/StateFlow;ZILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun channel (Ljava/lang/String;Ljava/lang/String;)Lio/getstream/chat/android/client/channel/state/ChannelState;
public final fun clear ()V
public final fun queryChannels (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;)Lio/getstream/chat/android/client/api/state/QueryChannelsState;
public final fun thread (Ljava/lang/String;)Lio/getstream/chat/android/client/api/state/ThreadState;
}
public abstract interface class io/getstream/chat/android/client/api/state/ThreadState {
public abstract fun getEndOfNewerMessages ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getEndOfOlderMessages ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getLoading ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getMessages ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getNewestInThread ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getOldestInThread ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun getParentId ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/audio/WaveformExtractorKt {
public static final fun isEof (Landroid/media/MediaCodec$BufferInfo;)Z
}
public abstract interface class io/getstream/chat/android/client/cdn/CDN {
public fun fileRequest (Ljava/lang/String;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
public static synthetic fun fileRequest$suspendImpl (Lio/getstream/chat/android/client/cdn/CDN;Ljava/lang/String;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
public fun imageRequest (Ljava/lang/String;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
public static synthetic fun imageRequest$suspendImpl (Lio/getstream/chat/android/client/cdn/CDN;Ljava/lang/String;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
}
public final class io/getstream/chat/android/client/cdn/CDNRequest {
public fun <init> (Ljava/lang/String;Ljava/util/Map;)V
public synthetic fun <init> (Ljava/lang/String;Ljava/util/Map;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Ljava/util/Map;
public final fun copy (Ljava/lang/String;Ljava/util/Map;)Lio/getstream/chat/android/client/cdn/CDNRequest;
public static synthetic fun copy$default (Lio/getstream/chat/android/client/cdn/CDNRequest;Ljava/lang/String;Ljava/util/Map;ILjava/lang/Object;)Lio/getstream/chat/android/client/cdn/CDNRequest;
public fun equals (Ljava/lang/Object;)Z
public final fun getHeaders ()Ljava/util/Map;
public final fun getUrl ()Ljava/lang/String;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class io/getstream/chat/android/client/channel/ChannelClient {
public final fun acceptInvite (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun addMembers (Lio/getstream/chat/android/client/query/AddMembersParams;)Lio/getstream/result/call/Call;
public final fun addMembers (Ljava/util/List;Lio/getstream/chat/android/models/Message;Ljava/lang/Boolean;Ljava/util/Date;Ljava/lang/Boolean;)Lio/getstream/result/call/Call;
public static synthetic fun addMembers$default (Lio/getstream/chat/android/client/channel/ChannelClient;Ljava/util/List;Lio/getstream/chat/android/models/Message;Ljava/lang/Boolean;Ljava/util/Date;Ljava/lang/Boolean;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun archive ()Lio/getstream/result/call/Call;
public final fun banUser (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Integer;)Lio/getstream/result/call/Call;
public final fun create (Lio/getstream/chat/android/client/query/CreateChannelParams;)Lio/getstream/result/call/Call;
public final fun create (Ljava/util/List;Ljava/util/Map;)Lio/getstream/result/call/Call;
public final fun delete ()Lio/getstream/result/call/Call;
public final fun deleteFile (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun deleteImage (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun deleteMessage (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun deleteMessage (Ljava/lang/String;Z)Lio/getstream/result/call/Call;
public static synthetic fun deleteMessage$default (Lio/getstream/chat/android/client/channel/ChannelClient;Ljava/lang/String;ZILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun deleteReaction (Ljava/lang/String;Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun disableSlowMode ()Lio/getstream/result/call/Call;
public final fun enableSlowMode (I)Lio/getstream/result/call/Call;
public final fun get (IIZ)Lio/getstream/result/call/Call;
public static synthetic fun get$default (Lio/getstream/chat/android/client/channel/ChannelClient;IIZILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun getChannelId ()Ljava/lang/String;
public final fun getChannelType ()Ljava/lang/String;
public final fun getCid ()Ljava/lang/String;
public final fun getFileAttachments (II)Lio/getstream/result/call/Call;
public final fun getImageAttachments (II)Lio/getstream/result/call/Call;
public final fun getMessage (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun getMessagesWithAttachments (IILjava/util/List;)Lio/getstream/result/call/Call;
public final fun getPinnedMessages (ILio/getstream/chat/android/models/querysort/QuerySorter;Lio/getstream/chat/android/client/api/models/PinnedMessagesPagination;)Lio/getstream/result/call/Call;
public final fun getReactions (Ljava/lang/String;II)Lio/getstream/result/call/Call;
public final fun hide (Z)Lio/getstream/result/call/Call;
public static synthetic fun hide$default (Lio/getstream/chat/android/client/channel/ChannelClient;ZILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun inviteMembers (Ljava/util/List;Lio/getstream/chat/android/models/Message;Ljava/lang/Boolean;)Lio/getstream/result/call/Call;
public static synthetic fun inviteMembers$default (Lio/getstream/chat/android/client/channel/ChannelClient;Ljava/util/List;Lio/getstream/chat/android/models/Message;Ljava/lang/Boolean;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun keystroke ()Lio/getstream/result/call/Call;
public final fun keystroke (Ljava/lang/String;)Lio/getstream/result/call/Call;
public static synthetic fun keystroke$default (Lio/getstream/chat/android/client/channel/ChannelClient;Ljava/lang/String;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun markMessageRead (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun markRead ()Lio/getstream/result/call/Call;
public final fun markThreadRead (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun markThreadUnread (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun markUnread (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun markUnread (Ljava/util/Date;)Lio/getstream/result/call/Call;
public final fun mute ()Lio/getstream/result/call/Call;
public final fun mute (Ljava/lang/Integer;)Lio/getstream/result/call/Call;
public static synthetic fun mute$default (Lio/getstream/chat/android/client/channel/ChannelClient;Ljava/lang/Integer;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun muteCurrentUser ()Lio/getstream/result/call/Call;
public final fun muteUser (Ljava/lang/String;)Lio/getstream/result/call/Call;
public final fun muteUser (Ljava/lang/String;Ljava/lang/Integer;)Lio/getstream/result/call/Call;
public static synthetic fun muteUser$default (Lio/getstream/chat/android/client/channel/ChannelClient;Ljava/lang/String;Ljava/lang/Integer;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun partialUpdateMember (Ljava/lang/String;Ljava/util/Map;Ljava/util/List;)Lio/getstream/result/call/Call;
public static synthetic fun partialUpdateMember$default (Lio/getstream/chat/android/client/channel/ChannelClient;Ljava/lang/String;Ljava/util/Map;Ljava/util/List;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun pin ()Lio/getstream/result/call/Call;
public final fun pinMessage (Lio/getstream/chat/android/models/Message;I)Lio/getstream/result/call/Call;
public final fun pinMessage (Lio/getstream/chat/android/models/Message;Ljava/util/Date;)Lio/getstream/result/call/Call;
public final fun query (Lio/getstream/chat/android/client/api/models/QueryChannelRequest;)Lio/getstream/result/call/Call;
public final fun queryBannedUsers ()Lio/getstream/result/call/Call;
public final fun queryBannedUsers (Lio/getstream/chat/android/models/FilterObject;)Lio/getstream/result/call/Call;
public final fun queryBannedUsers (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;)Lio/getstream/result/call/Call;
public final fun queryBannedUsers (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;Ljava/lang/Integer;)Lio/getstream/result/call/Call;
public final fun queryBannedUsers (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;Ljava/lang/Integer;Ljava/lang/Integer;)Lio/getstream/result/call/Call;
public final fun queryBannedUsers (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;Ljava/lang/Integer;Ljava/lang/Integer;Ljava/util/Date;)Lio/getstream/result/call/Call;
public final fun queryBannedUsers (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;Ljava/lang/Integer;Ljava/lang/Integer;Ljava/util/Date;Ljava/util/Date;)Lio/getstream/result/call/Call;
public final fun queryBannedUsers (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;Ljava/lang/Integer;Ljava/lang/Integer;Ljava/util/Date;Ljava/util/Date;Ljava/util/Date;)Lio/getstream/result/call/Call;
public final fun queryBannedUsers (Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;Ljava/lang/Integer;Ljava/lang/Integer;Ljava/util/Date;Ljava/util/Date;Ljava/util/Date;Ljava/util/Date;)Lio/getstream/result/call/Call;
public static synthetic fun queryBannedUsers$default (Lio/getstream/chat/android/client/channel/ChannelClient;Lio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;Ljava/lang/Integer;Ljava/lang/Integer;Ljava/util/Date;Ljava/util/Date;Ljava/util/Date;Ljava/util/Date;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun queryMembers (IILio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;Ljava/util/List;)Lio/getstream/result/call/Call;
public static synthetic fun queryMembers$default (Lio/getstream/chat/android/client/channel/ChannelClient;IILio/getstream/chat/android/models/FilterObject;Lio/getstream/chat/android/models/querysort/QuerySorter;Ljava/util/List;ILjava/lang/Object;)Lio/getstream/result/call/Call;
public final fun rejectInvite ()Lio/getstream/result/call/Call;