arm64-apple-ios.swiftinterface
68.5 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
// swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.4 (swiftlang-1205.0.26.9 clang-1205.0.19.55)
// swift-module-flags: -target arm64-apple-ios10.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name HHSDKVideo
import AVFoundation
import CoreGraphics
import CoreLocation
import CoreTelephony
import Foundation
import HHSDKBase
@_exported import HHSDKVideo
import ImageIO
import MobileCoreServices
import ObjectiveC
import Photos
import SecurityKit
import Swift
import UIKit
import UserNotifications
@objc public protocol OptionProtocal {
@objc var isDebug: Swift.Bool { get set }
@objc var isDevelopment: Swift.Bool { get set }
@objc var sdkProductId: Swift.String { get set }
@objc var mExtensionString: Swift.String { get set }
@objc var isTRTC: Swift.Bool { get set }
@objc var appVersion: Swift.String { get set }
@objc var allowBeauty: Swift.Bool { get set }
@objc var allowEvaluate: Swift.Bool { get set }
@objc var allowAddMember: Swift.Bool { get set }
@objc var allowMulti: Swift.Bool { get set }
@objc var isShowDocInfo: Swift.Bool { get set }
@objc var shouldWaingCall: Swift.Bool { get set }
@objc var changeDoctorInterval: Swift.Int { get set }
@objc var isFilterSummary: Swift.Bool { get set }
@objc var isFilterMedicinal: Swift.Bool { get set }
@objc var defaultDocHeader: Swift.String { get set }
@objc var messageTitle: Swift.String { get set }
@objc var isByPresent: Swift.Bool { get set }
@objc var hideUserCenter: Swift.Bool { get set }
@objc var enableActivate: Swift.Bool { get set }
@objc var enableMedical: Swift.Bool { get set }
}
public var HMDefaultOpt: HHSDKVideo.OptionProtocal {
get
}
@objc @_inheritsConvenienceInitializers public class HHPhotoPickerController : UIKit.UINavigationController {
@objc override dynamic public func viewDidLoad()
convenience public init(localPath: Swift.String? = nil, deleteMode: Swift.Bool = false, finish: (([HHSDKVideo.SDKCameraImageModel]?) -> Swift.Void)? = nil)
@objc deinit
@available(iOS 5.0, *)
@objc override dynamic public init(navigationBarClass: Swift.AnyClass?, toolbarClass: Swift.AnyClass?)
@objc override dynamic public init(rootViewController: UIKit.UIViewController)
@objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
}
@objc @_inheritsConvenienceInitializers public class CommentBaseVC : UIKit.UIViewController {
@objc override dynamic public func viewWillAppear(_ animated: Swift.Bool)
@objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
@objc required dynamic public init?(coder: Foundation.NSCoder)
@objc deinit
}
public struct EKPopUpMessage {
public typealias EKPopUpMessageAction = () -> ()
public struct ThemeImage {
public enum Position {
case topToTop(offset: CoreGraphics.CGFloat)
case centerToTop(offset: CoreGraphics.CGFloat)
}
public var image: HHSDKVideo.EKProperty.ImageContent
public var position: HHSDKVideo.EKPopUpMessage.ThemeImage.Position
public init(image: HHSDKVideo.EKProperty.ImageContent, position: HHSDKVideo.EKPopUpMessage.ThemeImage.Position = .topToTop(offset: 40))
}
public var themeImage: HHSDKVideo.EKPopUpMessage.ThemeImage?
public var title: HHSDKVideo.EKProperty.LabelContent
public var description: HHSDKVideo.EKProperty.LabelContent
public var button: HHSDKVideo.EKProperty.ButtonContent
public var action: HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction
public init(themeImage: HHSDKVideo.EKPopUpMessage.ThemeImage? = nil, title: HHSDKVideo.EKProperty.LabelContent, description: HHSDKVideo.EKProperty.LabelContent, button: HHSDKVideo.EKProperty.ButtonContent, action: @escaping HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction)
}
public struct CommentApi {
}
public typealias HHFetchBlock = (UIKit.UIImage?, [Swift.AnyHashable : Any]?) -> Swift.Void
public typealias onCanceled = (() -> Swift.Void)
public typealias onCapFinished = (([HHSDKVideo.SDKCameraImageModel]?) -> Swift.Void)
public typealias onCropFinish = (UIKit.UIImage, Swift.String?) -> Swift.Void
public enum HHMediaType : Swift.Int {
case cusCamera
case sysCamera
case cusVideo
case sysVideo
case photoImage
case photoVideo
case cusPhoto
case sysCrop
public init?(rawValue: Swift.Int)
public typealias RawValue = Swift.Int
public var rawValue: Swift.Int {
get
}
}
public class HHCameraConfig {
weak public var sender: UIKit.UIViewController!
public var mediaType: HHSDKVideo.HHMediaType
public var isGrayCam: Swift.Bool
public var canReduce: Swift.Bool
public var autoUpload: Swift.Bool
public var maxCount: Swift.Int?
public var crop: HHSDKVideo.onCropFinish?
public var canceled: HHSDKVideo.onCanceled?
public init()
public func build(_ block: (inout HHSDKVideo.HHCameraConfig) -> Swift.Void) -> HHSDKVideo.HHCameraConfig
@objc deinit
}
extension EKAttributes {
public struct Animation : Swift.Equatable {
public struct Spring : Swift.Equatable {
public var damping: CoreGraphics.CGFloat
public var initialVelocity: CoreGraphics.CGFloat
public init(damping: CoreGraphics.CGFloat, initialVelocity: CoreGraphics.CGFloat)
public static func == (a: HHSDKVideo.EKAttributes.Animation.Spring, b: HHSDKVideo.EKAttributes.Animation.Spring) -> Swift.Bool
}
public struct RangeAnimation : Swift.Equatable {
public var duration: Foundation.TimeInterval
public var delay: Foundation.TimeInterval
public var start: CoreGraphics.CGFloat
public var end: CoreGraphics.CGFloat
public var spring: HHSDKVideo.EKAttributes.Animation.Spring?
public init(from start: CoreGraphics.CGFloat, to end: CoreGraphics.CGFloat, duration: Foundation.TimeInterval, delay: Foundation.TimeInterval = 0, spring: HHSDKVideo.EKAttributes.Animation.Spring? = nil)
public static func == (a: HHSDKVideo.EKAttributes.Animation.RangeAnimation, b: HHSDKVideo.EKAttributes.Animation.RangeAnimation) -> Swift.Bool
}
public struct Translate : Swift.Equatable {
public enum AnchorPosition : Swift.Equatable {
case top
case bottom
case automatic
public func hash(into hasher: inout Swift.Hasher)
public static func == (a: HHSDKVideo.EKAttributes.Animation.Translate.AnchorPosition, b: HHSDKVideo.EKAttributes.Animation.Translate.AnchorPosition) -> Swift.Bool
public var hashValue: Swift.Int {
get
}
}
public var duration: Foundation.TimeInterval
public var delay: Foundation.TimeInterval
public var anchorPosition: HHSDKVideo.EKAttributes.Animation.Translate.AnchorPosition
public var spring: HHSDKVideo.EKAttributes.Animation.Spring?
public init(duration: Foundation.TimeInterval, anchorPosition: HHSDKVideo.EKAttributes.Animation.Translate.AnchorPosition = .automatic, delay: Foundation.TimeInterval = 0, spring: HHSDKVideo.EKAttributes.Animation.Spring? = nil)
public static func == (a: HHSDKVideo.EKAttributes.Animation.Translate, b: HHSDKVideo.EKAttributes.Animation.Translate) -> Swift.Bool
}
public var translate: HHSDKVideo.EKAttributes.Animation.Translate?
public var scale: HHSDKVideo.EKAttributes.Animation.RangeAnimation?
public var fade: HHSDKVideo.EKAttributes.Animation.RangeAnimation?
public var containsTranslation: Swift.Bool {
get
}
public var containsScale: Swift.Bool {
get
}
public var containsFade: Swift.Bool {
get
}
public var containsAnimation: Swift.Bool {
get
}
public var maxDelay: Foundation.TimeInterval {
get
}
public var maxDuration: Foundation.TimeInterval {
get
}
public var totalDuration: Foundation.TimeInterval {
get
}
public static var translation: HHSDKVideo.EKAttributes.Animation {
get
}
public static var none: HHSDKVideo.EKAttributes.Animation {
get
}
public init(translate: HHSDKVideo.EKAttributes.Animation.Translate? = nil, scale: HHSDKVideo.EKAttributes.Animation.RangeAnimation? = nil, fade: HHSDKVideo.EKAttributes.Animation.RangeAnimation? = nil)
public static func == (a: HHSDKVideo.EKAttributes.Animation, b: HHSDKVideo.EKAttributes.Animation) -> Swift.Bool
}
}
@objc @_hasMissingDesignatedInitializers public class EKSimpleMessageView : UIKit.UIView {
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
@objc override dynamic public func traitCollectionDidChange(_ previousTraitCollection: UIKit.UITraitCollection?)
@objc override dynamic public init(frame: CoreGraphics.CGRect)
@objc deinit
}
public typealias HHPriceInfo = (priceAttri: Foundation.NSMutableAttributedString, disPriceWidth: CoreGraphics.CGFloat?)
public struct HHDoctorModel : HHSDKBase.Mappable {
public init?(map: HHSDKBase.Map)
public var agentUuid: Swift.String?
public var createtime: Swift.String?
public var department: Swift.String?
public var deptid: Swift.Int?
public var disease: Swift.String?
public var diseaseList: [Swift.String]?
public var doctorid: Swift.String?
public var expertStatus: Swift.String?
public var expertVideoTime: Swift.String?
public var famExpertVideoPrice: Swift.Float?
public var famServices: Swift.Int?
public var famprovidetypes: Swift.String?
public var hhTitle: Swift.String?
public var hospital: Swift.String?
public var hospitalid: Swift.Int?
public var introduction: Swift.String?
public var isTest: Swift.String?
public var login: HHSDKVideo.LoginModel?
public var workyear: Swift.Int?
public var name: Swift.String?
public var photourl: Swift.String?
public var price: Swift.Float?
public var providetype: Swift.String?
public var province: Swift.String?
public var service: Swift.String?
public var serviceTypeStatus: Swift.String?
public var speciality: Swift.String?
public var standardDeptid: Swift.Int?
public var standardDeptname: Swift.String?
public var standardid: Swift.Int?
public var subdept: Swift.String?
public var subdeptids: Swift.String?
public var title: Swift.String?
public var titleid: Swift.Int?
public var vedioTimeList: Swift.String?
public var videoprice: Swift.Float?
public var license: Swift.String?
public init()
public mutating func mapping(map: HHSDKBase.Map)
public func isJianzhi() -> Swift.Bool
public func supportType(type: HHSDKVideo.HHConsType) -> Swift.Bool
public func getPrice() -> HHSDKVideo.HHPriceInfo?
public func isZhuanke() -> Swift.Bool
}
public struct LoginModel : HHSDKBase.Mappable {
public var actionSource: Swift.String?
public var loginname: Swift.String?
public var name: Swift.String?
public var photourl: Swift.String?
public var uuid: Swift.Int?
public var videoToken: Swift.String?
public var phoneno: Swift.String?
public init?(map: HHSDKBase.Map)
public mutating func mapping(map: HHSDKBase.Map)
}
public enum HHConsType : Swift.String {
case normal
case expert_video
case feiDao
case video
public init?(rawValue: Swift.String)
public typealias RawValue = Swift.String
public var rawValue: Swift.String {
get
}
}
public struct SDKConfigModel : HHSDKBase.Mappable {
public var cardIdActiveShow: Swift.Int
public var changeDoctorTime: Swift.Int?
public init?(map: HHSDKBase.Map)
public mutating func mapping(map: HHSDKBase.Map)
}
extension HHPermission : CoreLocation.CLLocationManagerDelegate {
@objc dynamic public func locationManager(_ manager: CoreLocation.CLLocationManager, didChangeAuthorization status: CoreLocation.CLAuthorizationStatus)
}
extension EKAttributes {
public enum RoundCorners {
case none
case all(radius: CoreGraphics.CGFloat)
case top(radius: CoreGraphics.CGFloat)
case bottom(radius: CoreGraphics.CGFloat)
}
public enum Border {
case none
case value(color: UIKit.UIColor, width: CoreGraphics.CGFloat)
}
}
@objc final public class EKTextField : UIKit.UIView {
final public var text: Swift.String {
get
set
}
public init(with content: HHSDKVideo.EKProperty.TextFieldContent)
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
final public func makeFirstResponder()
@objc override final public func traitCollectionDidChange(_ previousTraitCollection: UIKit.UITraitCollection?)
@objc override dynamic public init(frame: CoreGraphics.CGRect)
@objc deinit
}
@_hasMissingDesignatedInitializers public class BusyPics {
public static let `default`: HHSDKVideo.BusyPics
public func cacheImgs()
public func getImgs() -> [Foundation.URL?]
@objc deinit
}
public struct HHInviteDocModel : HHSDKBase.Mappable {
public var orderId: Swift.String?
public var channelId: Swift.UInt64?
public var doctorId: Swift.String?
public var imageUrl: Swift.String?
public var signalingType: Swift.String?
public var width: CoreGraphics.CGFloat
public var height: CoreGraphics.CGFloat
public init?(map: HHSDKBase.Map)
public init(_ info: HHSDKVideo.HHNetCallChatInfo, meetId: Swift.UInt64?)
public func isWhiteBoard() -> Swift.Bool
public func isMultyCall() -> Swift.Bool
public mutating func mapping(map: HHSDKBase.Map)
}
@_hasMissingDesignatedInitializers public class HHPhotoPicker {
public static func openCamera(config: HHSDKVideo.HHCameraConfig, capFinished: HHSDKVideo.onCapFinished? = nil)
public static func reduceImages(paths: [Swift.String], finished: @escaping (([Swift.String]) -> Swift.Void))
public class func changeAvatar(vc: UIKit.UIViewController, reference: UIKit.UIView? = nil, uuid: Swift.Int, imgClosure: @escaping (UIKit.UIImage) -> Swift.Void, keyClosure: @escaping (Swift.String) -> Swift.Void)
@objc deinit
}
extension HHPhotoPicker {
public static func checkPermisstion(_ type: HHSDKVideo.PermissionType, authorized: (() -> Swift.Void)?, others: ((HHSDKVideo.PermissionType) -> Swift.Void)?)
public static func converSize(_ size: CoreGraphics.CGSize) -> CoreGraphics.CGSize
}
public struct HHWaitDoctorModel : HHSDKBase.Mappable {
public var isNormalTrans: Swift.Bool
public var deptId: Swift.String?
public var uuid: Swift.Int?
public var transUuid: Swift.Int?
public init?(map: HHSDKBase.Map)
public func isWaiting() -> Swift.Bool
public mutating func mapping(map: HHSDKBase.Map)
}
public struct HHWaitingCallModel : HHSDKBase.Mappable {
public init?(map: HHSDKBase.Map)
public func isCall() -> Swift.Bool
public mutating func mapping(map: HHSDKBase.Map)
}
public struct HHAgentCallModel : HHSDKBase.Mappable {
public init?(map: HHSDKBase.Map)
public func isAgent() -> Swift.Bool
public func isTransform() -> Swift.Bool
public mutating func mapping(map: HHSDKBase.Map)
}
public enum PermissionStatus : Swift.String {
case authorized
case denied
case disabled
case notDetermined
public init?(rawValue: Swift.String)
public typealias RawValue = Swift.String
public var rawValue: Swift.String {
get
}
}
extension PermissionStatus : Swift.CustomStringConvertible {
public var description: Swift.String {
get
}
}
@_hasMissingDesignatedInitializers public class PhotoPickerConfig {
public static let `default`: HHSDKVideo.PhotoPickerConfig
public var miniPicTip: Swift.Bool
public var mMaxSelectCount: Swift.Int
public var mDetailColumnCount: Swift.Int
@objc deinit
}
extension EKAttributes {
public enum Precedence {
public struct Priority : Swift.Hashable, Swift.Equatable, Swift.RawRepresentable, Swift.Comparable {
public var rawValue: Swift.Int
public var hashValue: Swift.Int {
get
}
public init(_ rawValue: Swift.Int)
public init(rawValue: Swift.Int)
public static func == (lhs: HHSDKVideo.EKAttributes.Precedence.Priority, rhs: HHSDKVideo.EKAttributes.Precedence.Priority) -> Swift.Bool
public static func < (lhs: HHSDKVideo.EKAttributes.Precedence.Priority, rhs: HHSDKVideo.EKAttributes.Precedence.Priority) -> Swift.Bool
public typealias RawValue = Swift.Int
}
public enum QueueingHeuristic {
public static var value: HHSDKVideo.EKAttributes.Precedence.QueueingHeuristic
case chronological
case priority
public static func == (a: HHSDKVideo.EKAttributes.Precedence.QueueingHeuristic, b: HHSDKVideo.EKAttributes.Precedence.QueueingHeuristic) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
case override(priority: HHSDKVideo.EKAttributes.Precedence.Priority, dropEnqueuedEntries: Swift.Bool)
case enqueue(priority: HHSDKVideo.EKAttributes.Precedence.Priority)
public var priority: HHSDKVideo.EKAttributes.Precedence.Priority {
get
set
}
}
}
extension EKAttributes.Precedence.Priority {
public static let maxRawValue: Swift.Int
public static let highRawValue: Swift.Int
public static let normalRawValue: Swift.Int
public static let lowRawValue: Swift.Int
public static let minRawValue: Swift.Int
public static let max: HHSDKVideo.EKAttributes.Precedence.Priority
public static let high: HHSDKVideo.EKAttributes.Precedence.Priority
public static let normal: HHSDKVideo.EKAttributes.Precedence.Priority
public static let low: HHSDKVideo.EKAttributes.Precedence.Priority
public static let min: HHSDKVideo.EKAttributes.Precedence.Priority
}
@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class VCManager : ObjectiveC.NSObject {
public static let `default`: HHSDKVideo.VCManager
public var waitModel: HHSDKVideo.HHWaitDoctorModel?
@objc deinit
}
extension VCManager {
public func onReceiveCall(callee: Swift.String, caller: Swift.String, orderId: Swift.String)
public func isInBusy() -> Swift.Bool
}
extension VCManager {
public func onReceiveInvite(docModel: HHSDKVideo.HHInviteDocModel)
public static func onUserReject(_ fromUuid: Swift.String)
public static func onCancelInvite(_ fromUuid: Swift.String)
public static func changeVideo(_ isVoice: Swift.Bool)
}
public struct EKProperty {
public struct ButtonContent {
public typealias Action = () -> ()
public var label: HHSDKVideo.EKProperty.LabelContent
public var backgroundColor: HHSDKVideo.EKColor
public var highlightedBackgroundColor: HHSDKVideo.EKColor
public var contentEdgeInset: CoreGraphics.CGFloat
public var displayMode: HHSDKVideo.EKAttributes.DisplayMode
public var accessibilityIdentifier: Swift.String?
public var action: HHSDKVideo.EKProperty.ButtonContent.Action?
public init(label: HHSDKVideo.EKProperty.LabelContent, backgroundColor: HHSDKVideo.EKColor, highlightedBackgroundColor: HHSDKVideo.EKColor, contentEdgeInset: CoreGraphics.CGFloat = 5, displayMode: HHSDKVideo.EKAttributes.DisplayMode = .inferred, accessibilityIdentifier: Swift.String? = nil, action: @escaping HHSDKVideo.EKProperty.ButtonContent.Action = {})
public func backgroundColor(for traitCollection: UIKit.UITraitCollection) -> UIKit.UIColor
public func highlightedBackgroundColor(for traitCollection: UIKit.UITraitCollection) -> UIKit.UIColor
public func highlighedLabelColor(for traitCollection: UIKit.UITraitCollection) -> UIKit.UIColor
}
public struct LabelContent {
public var text: Swift.String
public var style: HHSDKVideo.EKProperty.LabelStyle
public var accessibilityIdentifier: Swift.String?
public init(text: Swift.String, style: HHSDKVideo.EKProperty.LabelStyle, accessibilityIdentifier: Swift.String? = nil)
}
public struct LabelStyle {
public var font: UIKit.UIFont
public var color: HHSDKVideo.EKColor
public var alignment: UIKit.NSTextAlignment
public var numberOfLines: Swift.Int
public var displayMode: HHSDKVideo.EKAttributes.DisplayMode
public init(font: UIKit.UIFont, color: HHSDKVideo.EKColor, alignment: UIKit.NSTextAlignment = .left, displayMode: HHSDKVideo.EKAttributes.DisplayMode = .inferred, numberOfLines: Swift.Int = 0)
public func color(for traitCollection: UIKit.UITraitCollection) -> UIKit.UIColor
}
public struct ImageContent {
public enum TransformAnimation {
case animate(duration: Foundation.TimeInterval, options: UIKit.UIView.AnimationOptions, transform: CoreGraphics.CGAffineTransform)
case none
}
public var tint: HHSDKVideo.EKColor?
public var images: [UIKit.UIImage]
public var imageSequenceAnimationDuration: Foundation.TimeInterval
public var size: CoreGraphics.CGSize?
public var contentMode: UIKit.UIView.ContentMode
public var makesRound: Swift.Bool
public var animation: HHSDKVideo.EKProperty.ImageContent.TransformAnimation
public var displayMode: HHSDKVideo.EKAttributes.DisplayMode
public var accessibilityIdentifier: Swift.String?
public init(imageName: Swift.String, animation: HHSDKVideo.EKProperty.ImageContent.TransformAnimation = .none, displayMode: HHSDKVideo.EKAttributes.DisplayMode = .inferred, size: CoreGraphics.CGSize? = nil, contentMode: UIKit.UIView.ContentMode = .scaleToFill, tint: HHSDKVideo.EKColor? = nil, makesRound: Swift.Bool = false, accessibilityIdentifier: Swift.String? = nil)
public init(image: UIKit.UIImage, animation: HHSDKVideo.EKProperty.ImageContent.TransformAnimation = .none, displayMode: HHSDKVideo.EKAttributes.DisplayMode = .inferred, size: CoreGraphics.CGSize? = nil, tint: HHSDKVideo.EKColor? = nil, contentMode: UIKit.UIView.ContentMode = .scaleToFill, makesRound: Swift.Bool = false, accessibilityIdentifier: Swift.String? = nil)
public init(images: [UIKit.UIImage], imageSequenceAnimationDuration: Foundation.TimeInterval = 1, displayMode: HHSDKVideo.EKAttributes.DisplayMode = .inferred, animation: HHSDKVideo.EKProperty.ImageContent.TransformAnimation = .none, size: CoreGraphics.CGSize? = nil, tint: HHSDKVideo.EKColor? = nil, contentMode: UIKit.UIView.ContentMode = .scaleToFill, makesRound: Swift.Bool = false, accessibilityIdentifier: Swift.String? = nil)
public init(imagesNames: [Swift.String], imageSequenceAnimationDuration: Foundation.TimeInterval = 1, displayMode: HHSDKVideo.EKAttributes.DisplayMode = .inferred, animation: HHSDKVideo.EKProperty.ImageContent.TransformAnimation = .none, size: CoreGraphics.CGSize? = nil, tint: HHSDKVideo.EKColor? = nil, contentMode: UIKit.UIView.ContentMode = .scaleToFill, makesRound: Swift.Bool = false, accessibilityIdentifier: Swift.String? = nil)
public static func thumb(with image: UIKit.UIImage, edgeSize: CoreGraphics.CGFloat) -> HHSDKVideo.EKProperty.ImageContent
public static func thumb(with imageName: Swift.String, edgeSize: CoreGraphics.CGFloat) -> HHSDKVideo.EKProperty.ImageContent
public func tintColor(for traitCollection: UIKit.UITraitCollection) -> UIKit.UIColor?
}
public struct TextFieldContent {
weak public var delegate: UIKit.UITextFieldDelegate?
public var keyboardType: UIKit.UIKeyboardType
public var isSecure: Swift.Bool
public var leadingImage: UIKit.UIImage!
public var placeholder: HHSDKVideo.EKProperty.LabelContent
public var textStyle: HHSDKVideo.EKProperty.LabelStyle
public var tintColor: HHSDKVideo.EKColor!
public var displayMode: HHSDKVideo.EKAttributes.DisplayMode
public var bottomBorderColor: HHSDKVideo.EKColor
public var accessibilityIdentifier: Swift.String?
public var textContent: Swift.String {
get
set
}
public init(delegate: UIKit.UITextFieldDelegate? = nil, keyboardType: UIKit.UIKeyboardType = .default, placeholder: HHSDKVideo.EKProperty.LabelContent, tintColor: HHSDKVideo.EKColor? = nil, displayMode: HHSDKVideo.EKAttributes.DisplayMode = .inferred, textStyle: HHSDKVideo.EKProperty.LabelStyle, isSecure: Swift.Bool = false, leadingImage: UIKit.UIImage? = nil, bottomBorderColor: HHSDKVideo.EKColor = .clear, accessibilityIdentifier: Swift.String? = nil)
public func tintColor(for traitCollection: UIKit.UITraitCollection) -> UIKit.UIColor?
public func bottomBorderColor(for traitCollection: UIKit.UITraitCollection) -> UIKit.UIColor?
}
public struct ButtonBarContent {
public var content: [HHSDKVideo.EKProperty.ButtonContent]
public var separatorColor: HHSDKVideo.EKColor
public var horizontalDistributionThreshold: Swift.Int
public var expandAnimatedly: Swift.Bool
public var buttonHeight: CoreGraphics.CGFloat
public var displayMode: HHSDKVideo.EKAttributes.DisplayMode
public init(with buttonContents: HHSDKVideo.EKProperty.ButtonContent..., separatorColor: HHSDKVideo.EKColor, horizontalDistributionThreshold: Swift.Int = 2, buttonHeight: CoreGraphics.CGFloat = 50, displayMode: HHSDKVideo.EKAttributes.DisplayMode = .inferred, expandAnimatedly: Swift.Bool)
public init(with buttonContents: [HHSDKVideo.EKProperty.ButtonContent], separatorColor: HHSDKVideo.EKColor, horizontalDistributionThreshold: Swift.Int = 2, buttonHeight: CoreGraphics.CGFloat = 50, displayMode: HHSDKVideo.EKAttributes.DisplayMode = .inferred, expandAnimatedly: Swift.Bool)
public func separatorColor(for traitCollection: UIKit.UITraitCollection) -> UIKit.UIColor
}
public struct EKRatingItemContent {
public var title: HHSDKVideo.EKProperty.LabelContent
public var description: HHSDKVideo.EKProperty.LabelContent
public var unselectedImage: HHSDKVideo.EKProperty.ImageContent
public var selectedImage: HHSDKVideo.EKProperty.ImageContent
public var size: CoreGraphics.CGSize
public init(title: HHSDKVideo.EKProperty.LabelContent, description: HHSDKVideo.EKProperty.LabelContent, unselectedImage: HHSDKVideo.EKProperty.ImageContent, selectedImage: HHSDKVideo.EKProperty.ImageContent, size: CoreGraphics.CGSize = CGSize(width: 50, height: 50))
}
}
@objc public enum HHMCallingState : Swift.Int {
case onStart = 0
case waitingDoctor
case callFreeDoctor
case callConnect
case didRing
public init?(rawValue: Swift.Int)
public typealias RawValue = Swift.Int
public var rawValue: Swift.Int {
get
}
}
@objc public protocol HHMVideoDelegate : ObjectiveC.NSObjectProtocol {
@objc optional func callStateChange(_ state: HHSDKVideo.HHMCallingState)
@objc optional func callDidEstablish()
@objc optional func getChatParentView(_ view: UIKit.UIView)
@objc optional func callFail(code: Swift.Int, error: Swift.String)
@objc optional func onFail(_ errorCode: Swift.Int, errrorStr: Swift.String?)
@objc optional func onCancel()
@objc optional func receivedOrder(_ orderId: Swift.String)
@objc optional func callDidFinish()
@objc optional func onExtensionDoctor()
@objc optional func onReceive(_ callID: Swift.String)
@objc optional func onResponse(_ accept: Swift.Bool)
@objc optional func onLeakPermission(_ type: HHSDKVideo.PermissionType)
}
@objc public protocol HHCallDelegate : ObjectiveC.NSObjectProtocol {
@objc optional func onCallStatus(_ error: Swift.Error?)
@objc optional func onCallSuccess()
@objc optional func callFinished()
}
extension EKAttributes {
public static var `default`: HHSDKVideo.EKAttributes
public static var toast: HHSDKVideo.EKAttributes {
get
}
public static var float: HHSDKVideo.EKAttributes {
get
}
public static var topFloat: HHSDKVideo.EKAttributes {
get
}
public static var bottomFloat: HHSDKVideo.EKAttributes {
get
}
public static var centerFloat: HHSDKVideo.EKAttributes {
get
}
public static var bottomToast: HHSDKVideo.EKAttributes {
get
}
public static var topToast: HHSDKVideo.EKAttributes {
get
}
public static var topNote: HHSDKVideo.EKAttributes {
get
}
public static var bottomNote: HHSDKVideo.EKAttributes {
get
}
public static var statusBar: HHSDKVideo.EKAttributes {
get
}
}
extension UIImage {
public class func gifImageWithData(_ data: Foundation.Data) -> UIKit.UIImage?
public class func gifImageWithURL(_ gifUrl: Swift.String) -> UIKit.UIImage?
public class func gifImageWithName(_ name: Swift.String) -> UIKit.UIImage?
}
@_hasMissingDesignatedInitializers public class HHNetCallChatInfo {
public init()
@objc deinit
}
@objc public enum HHCallType : Swift.Int {
case child = 600000
case adult = 600002
public init?(rawValue: Swift.Int)
public typealias RawValue = Swift.Int
public var rawValue: Swift.Int {
get
}
}
extension EKAttributes {
public enum BackgroundStyle : Swift.Equatable {
public struct BlurStyle : Swift.Equatable {
public static var extra: HHSDKVideo.EKAttributes.BackgroundStyle.BlurStyle {
get
}
public static var standard: HHSDKVideo.EKAttributes.BackgroundStyle.BlurStyle {
get
}
@available(iOS 10.0, *)
public static var prominent: HHSDKVideo.EKAttributes.BackgroundStyle.BlurStyle {
get
}
public static var dark: HHSDKVideo.EKAttributes.BackgroundStyle.BlurStyle {
get
}
public init(style: UIKit.UIBlurEffect.Style)
public init(light: UIKit.UIBlurEffect.Style, dark: UIKit.UIBlurEffect.Style)
public func blurStyle(for traits: UIKit.UITraitCollection, mode: HHSDKVideo.EKAttributes.DisplayMode) -> UIKit.UIBlurEffect.Style
public func blurEffect(for traits: UIKit.UITraitCollection, mode: HHSDKVideo.EKAttributes.DisplayMode) -> UIKit.UIBlurEffect
public static func == (a: HHSDKVideo.EKAttributes.BackgroundStyle.BlurStyle, b: HHSDKVideo.EKAttributes.BackgroundStyle.BlurStyle) -> Swift.Bool
}
public struct Gradient {
public var colors: [HHSDKVideo.EKColor]
public var startPoint: CoreGraphics.CGPoint
public var endPoint: CoreGraphics.CGPoint
public init(colors: [HHSDKVideo.EKColor], startPoint: CoreGraphics.CGPoint, endPoint: CoreGraphics.CGPoint)
}
case visualEffect(style: HHSDKVideo.EKAttributes.BackgroundStyle.BlurStyle)
case color(color: HHSDKVideo.EKColor)
case gradient(gradient: HHSDKVideo.EKAttributes.BackgroundStyle.Gradient)
case image(image: UIKit.UIImage)
case clear
public static func == (lhs: HHSDKVideo.EKAttributes.BackgroundStyle, rhs: HHSDKVideo.EKAttributes.BackgroundStyle) -> Swift.Bool
}
}
@objc final public class EKRatingSymbolView : UIKit.UIView {
final public var isSelected: Swift.Bool {
get
set
}
public init(unselectedImage: HHSDKVideo.EKProperty.ImageContent, selectedImage: HHSDKVideo.EKProperty.ImageContent, selection: @escaping HHSDKVideo.EKRatingMessage.Selection)
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
@objc override dynamic public init(frame: CoreGraphics.CGRect)
@objc deinit
}
extension EKAttributes {
public enum Scroll {
public struct PullbackAnimation {
public var duration: Foundation.TimeInterval
public var damping: CoreGraphics.CGFloat
public var initialSpringVelocity: CoreGraphics.CGFloat
public init(duration: Foundation.TimeInterval, damping: CoreGraphics.CGFloat, initialSpringVelocity: CoreGraphics.CGFloat)
public static var jolt: HHSDKVideo.EKAttributes.Scroll.PullbackAnimation {
get
}
public static var easeOut: HHSDKVideo.EKAttributes.Scroll.PullbackAnimation {
get
}
}
case disabled
case edgeCrossingDisabled(swipeable: Swift.Bool)
case enabled(swipeable: Swift.Bool, pullbackAnimation: HHSDKVideo.EKAttributes.Scroll.PullbackAnimation)
}
}
extension EKAttributes {
public enum Shadow {
case none
case active(with: HHSDKVideo.EKAttributes.Shadow.Value)
public struct Value {
public let radius: CoreGraphics.CGFloat
public let opacity: Swift.Float
public let color: HHSDKVideo.EKColor
public let offset: CoreGraphics.CGSize
public init(color: HHSDKVideo.EKColor = .black, opacity: Swift.Float, radius: CoreGraphics.CGFloat, offset: CoreGraphics.CGSize = .zero)
}
}
}
@objc @_hasMissingDesignatedInitializers final public class EKNotificationMessageView : HHSDKVideo.EKSimpleMessageView {
public init(with message: HHSDKVideo.EKNotificationMessage)
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
@objc override final public func traitCollectionDidChange(_ previousTraitCollection: UIKit.UITraitCollection?)
@objc deinit
}
extension EKAttributes {
public enum NotificationHapticFeedback {
case success
case warning
case error
case none
public static func == (a: HHSDKVideo.EKAttributes.NotificationHapticFeedback, b: HHSDKVideo.EKAttributes.NotificationHapticFeedback) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
}
@objc public enum HHPagerViewTransformerType : Swift.Int {
case crossFading
case zoomOut
case depth
case overlap
case linear
case coverFlow
case ferrisWheel
case invertedFerrisWheel
case cubic
public init?(rawValue: Swift.Int)
public typealias RawValue = Swift.Int
public var rawValue: Swift.Int {
get
}
}
extension EKAttributes {
public struct PositionConstraints {
public enum SafeArea {
case overridden
case empty(fillSafeArea: Swift.Bool)
public var isOverridden: Swift.Bool {
get
}
}
public enum Edge {
case ratio(value: CoreGraphics.CGFloat)
case offset(value: CoreGraphics.CGFloat)
case constant(value: CoreGraphics.CGFloat)
case intrinsic
public static var fill: HHSDKVideo.EKAttributes.PositionConstraints.Edge {
get
}
}
public struct Size {
public var width: HHSDKVideo.EKAttributes.PositionConstraints.Edge
public var height: HHSDKVideo.EKAttributes.PositionConstraints.Edge
public init(width: HHSDKVideo.EKAttributes.PositionConstraints.Edge, height: HHSDKVideo.EKAttributes.PositionConstraints.Edge)
public static var intrinsic: HHSDKVideo.EKAttributes.PositionConstraints.Size {
get
}
public static var sizeToWidth: HHSDKVideo.EKAttributes.PositionConstraints.Size {
get
}
public static var screen: HHSDKVideo.EKAttributes.PositionConstraints.Size {
get
}
}
public enum KeyboardRelation {
public struct Offset {
public var bottom: CoreGraphics.CGFloat
public var screenEdgeResistance: CoreGraphics.CGFloat?
public init(bottom: CoreGraphics.CGFloat = 0, screenEdgeResistance: CoreGraphics.CGFloat? = nil)
public static var none: HHSDKVideo.EKAttributes.PositionConstraints.KeyboardRelation.Offset {
get
}
}
case bind(offset: HHSDKVideo.EKAttributes.PositionConstraints.KeyboardRelation.Offset)
case unbind
public var isBound: Swift.Bool {
get
}
}
public struct Rotation {
public enum SupportedInterfaceOrientation {
case standard
case all
public static func == (a: HHSDKVideo.EKAttributes.PositionConstraints.Rotation.SupportedInterfaceOrientation, b: HHSDKVideo.EKAttributes.PositionConstraints.Rotation.SupportedInterfaceOrientation) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
public var isEnabled: Swift.Bool
public var supportedInterfaceOrientations: HHSDKVideo.EKAttributes.PositionConstraints.Rotation.SupportedInterfaceOrientation
public init()
}
public var rotation: HHSDKVideo.EKAttributes.PositionConstraints.Rotation
public var keyboardRelation: HHSDKVideo.EKAttributes.PositionConstraints.KeyboardRelation
public var size: HHSDKVideo.EKAttributes.PositionConstraints.Size
public var maxSize: HHSDKVideo.EKAttributes.PositionConstraints.Size
public var verticalOffset: CoreGraphics.CGFloat
public var safeArea: HHSDKVideo.EKAttributes.PositionConstraints.SafeArea
public var hasVerticalOffset: Swift.Bool {
get
}
public static var float: HHSDKVideo.EKAttributes.PositionConstraints {
get
}
public static var fullWidth: HHSDKVideo.EKAttributes.PositionConstraints {
get
}
public static var fullScreen: HHSDKVideo.EKAttributes.PositionConstraints {
get
}
public init(verticalOffset: CoreGraphics.CGFloat = 0, size: HHSDKVideo.EKAttributes.PositionConstraints.Size = .sizeToWidth, maxSize: HHSDKVideo.EKAttributes.PositionConstraints.Size = .intrinsic)
}
}
@objc public enum PermissionType : Swift.Int {
case locationAlways
case locationWhenInUse
case microphone
case camera
case photos
public init?(rawValue: Swift.Int)
public typealias RawValue = Swift.Int
public var rawValue: Swift.Int {
get
}
}
extension PermissionType : Swift.CustomStringConvertible {
public var description: Swift.String {
get
}
}
extension EKAttributes {
public typealias DisplayDuration = Foundation.TimeInterval
}
@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @IBDesignable public class HHPagerView : UIKit.UIView, UIKit.UICollectionViewDataSource, UIKit.UICollectionViewDelegate {
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
@objc override dynamic public func layoutSubviews()
@objc override dynamic public func willMove(toWindow newWindow: UIKit.UIWindow?)
@objc override dynamic public func prepareForInterfaceBuilder()
@objc deinit
@objc public func numberOfSections(in collectionView: UIKit.UICollectionView) -> Swift.Int
@objc public func collectionView(_ collectionView: UIKit.UICollectionView, numberOfItemsInSection section: Swift.Int) -> Swift.Int
@objc public func collectionView(_ collectionView: UIKit.UICollectionView, cellForItemAt indexPath: Foundation.IndexPath) -> UIKit.UICollectionViewCell
@objc public func collectionView(_ collectionView: UIKit.UICollectionView, shouldHighlightItemAt indexPath: Foundation.IndexPath) -> Swift.Bool
@objc public func collectionView(_ collectionView: UIKit.UICollectionView, didHighlightItemAt indexPath: Foundation.IndexPath)
@objc public func collectionView(_ collectionView: UIKit.UICollectionView, shouldSelectItemAt indexPath: Foundation.IndexPath) -> Swift.Bool
@objc public func collectionView(_ collectionView: UIKit.UICollectionView, didSelectItemAt indexPath: Foundation.IndexPath)
@objc public func collectionView(_ collectionView: UIKit.UICollectionView, willDisplay cell: UIKit.UICollectionViewCell, forItemAt indexPath: Foundation.IndexPath)
@objc public func collectionView(_ collectionView: UIKit.UICollectionView, didEndDisplaying cell: UIKit.UICollectionViewCell, forItemAt indexPath: Foundation.IndexPath)
@objc public func scrollViewDidScroll(_ scrollView: UIKit.UIScrollView)
@objc public func scrollViewWillBeginDragging(_ scrollView: UIKit.UIScrollView)
@objc public func scrollViewWillEndDragging(_ scrollView: UIKit.UIScrollView, withVelocity velocity: CoreGraphics.CGPoint, targetContentOffset: Swift.UnsafeMutablePointer<CoreGraphics.CGPoint>)
@objc public func scrollViewDidEndDecelerating(_ scrollView: UIKit.UIScrollView)
@objc public func scrollViewDidEndScrollingAnimation(_ scrollView: UIKit.UIScrollView)
}
extension EKAttributes {
public enum WindowLevel {
case alerts
case statusBar
case normal
case custom(level: UIKit.UIWindow.Level)
public var value: UIKit.UIWindow.Level {
get
}
}
}
extension EKAttributes {
public enum StatusBar {
public typealias Appearance = (visible: Swift.Bool, style: UIKit.UIStatusBarStyle)
case ignored
case hidden
case dark
case light
case inferred
public var appearance: HHSDKVideo.EKAttributes.StatusBar.Appearance {
get
}
public static func statusBar(by appearance: HHSDKVideo.EKAttributes.StatusBar.Appearance) -> HHSDKVideo.EKAttributes.StatusBar
public static var currentAppearance: HHSDKVideo.EKAttributes.StatusBar.Appearance {
get
}
public static var currentStatusBar: HHSDKVideo.EKAttributes.StatusBar {
get
}
public static func == (a: HHSDKVideo.EKAttributes.StatusBar, b: HHSDKVideo.EKAttributes.StatusBar) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
}
@objc @_hasMissingDesignatedInitializers final public class EKAlertMessageView : HHSDKVideo.EKSimpleMessageView {
public init(with message: HHSDKVideo.EKAlertMessage)
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
@objc deinit
}
@objc @_hasMissingDesignatedInitializers public class HHPermission : ObjectiveC.NSObject {
public static let locationAlways: HHSDKVideo.HHPermission
public static let locationWhenInUse: HHSDKVideo.HHPermission
public static let microphone: HHSDKVideo.HHPermission
public static let camera: HHSDKVideo.HHPermission
public static let photos: HHSDKVideo.HHPermission
final public let type: HHSDKVideo.PermissionType
public var status: HHSDKVideo.PermissionStatus {
get
}
public var presentPrePermissionAlert: Swift.Bool
public var prePermissionAlert: HHSDKVideo.PermissionAlert {
get
set
}
public var presentDeniedAlert: Swift.Bool
@objc override dynamic public init()
@objc deinit
}
extension HHPermission {
@objc override dynamic public var description: Swift.String {
@objc get
}
@objc override dynamic public var debugDescription: Swift.String {
@objc get
}
}
@_inheritsConvenienceInitializers @objc public class HHCallerInfo : ObjectiveC.NSObject, HHSDKBase.Mappable {
public var name: Swift.String?
public var photourl: Swift.String?
public var uuid: Swift.Int?
public var userToken: Swift.String?
@objc override dynamic public init()
required public init?(map: HHSDKBase.Map)
public func mapping(map: HHSDKBase.Map)
@objc deinit
}
extension EKAttributes {
public enum PopBehavior {
case overridden
case animated(animation: HHSDKVideo.EKAttributes.Animation)
public var isOverriden: Swift.Bool {
get
}
}
}
@objc public class EKMessageContentView : UIKit.UIView {
public var titleContent: HHSDKVideo.EKProperty.LabelContent! {
get
set
}
public var subtitleContent: HHSDKVideo.EKProperty.LabelContent! {
get
set
}
public var titleAttributes: HHSDKVideo.EKProperty.LabelStyle! {
get
set
}
public var subtitleAttributes: HHSDKVideo.EKProperty.LabelStyle! {
get
set
}
public var title: Swift.String! {
get
set
}
public var subtitle: Swift.String! {
get
set
}
public var verticalMargins: CoreGraphics.CGFloat {
get
set
}
public var horizontalMargins: CoreGraphics.CGFloat {
get
set
}
public var labelsOffset: CoreGraphics.CGFloat {
get
set
}
@objc dynamic public init()
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
@objc override dynamic public func traitCollectionDidChange(_ previousTraitCollection: UIKit.UITraitCollection?)
@objc override dynamic public init(frame: CoreGraphics.CGRect)
@objc deinit
}
public enum hhToastPosition {
case top
case center
case bottom
public static func == (a: HHSDKVideo.hhToastPosition, b: HHSDKVideo.hhToastPosition) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
extension UIView {
public func hhmakeToast(_ message: Swift.String)
public func hhmakeToast(_ message: Swift.String, duration: Foundation.TimeInterval, position: HHSDKVideo.hhToastPosition)
public func hhmakeToast(_ message: Swift.String, duration: Foundation.TimeInterval, position: CoreGraphics.CGPoint)
public func hhmakeToast(_ message: Swift.String, duration: Foundation.TimeInterval, position: HHSDKVideo.hhToastPosition, style: HHSDKVideo.hhToastStyle?)
public func hhmakeToast(_ message: Swift.String, duration: Foundation.TimeInterval, position: CoreGraphics.CGPoint, style: HHSDKVideo.hhToastStyle?)
public func hhmakeToast(_ message: Swift.String?, duration: Foundation.TimeInterval, position: HHSDKVideo.hhToastPosition, title: Swift.String?, image: UIKit.UIImage?, style: HHSDKVideo.hhToastStyle?, completion: ((Swift.Bool) -> Swift.Void)?)
public func hhmakeToast(_ message: Swift.String?, duration: Foundation.TimeInterval, position: CoreGraphics.CGPoint, title: Swift.String?, image: UIKit.UIImage?, style: HHSDKVideo.hhToastStyle?, completion: ((Swift.Bool) -> Swift.Void)?)
public func hhshowToast(_ toast: UIKit.UIView)
public func hhshowToast(_ toast: UIKit.UIView, duration: Foundation.TimeInterval, position: HHSDKVideo.hhToastPosition, completion: ((Swift.Bool) -> Swift.Void)?)
public func hhshowToast(_ toast: UIKit.UIView, duration: Foundation.TimeInterval, position: CoreGraphics.CGPoint, completion: ((Swift.Bool) -> Swift.Void)?)
public func hhmakeToastActivity(_ position: HHSDKVideo.hhToastPosition)
public func hhmakeToastActivity(_ position: CoreGraphics.CGPoint)
public func hhhideToastActivity()
@objc dynamic public func hhhandleToastTapped(_ recognizer: UIKit.UITapGestureRecognizer)
@objc dynamic public func hhtoastTimerDidFinish(_ timer: Foundation.Timer)
public func hhtoastViewForMessage(_ message: Swift.String?, title: Swift.String?, image: UIKit.UIImage?, style: HHSDKVideo.hhToastStyle) throws -> UIKit.UIView
}
public struct hhToastStyle {
public init()
public var backgroundColor: UIKit.UIColor
public var titleColor: UIKit.UIColor
public var messageColor: UIKit.UIColor
public var maxWidthPercentage: CoreGraphics.CGFloat {
get
set
}
public var maxHeightPercentage: CoreGraphics.CGFloat {
get
set
}
public var horizontalPadding: CoreGraphics.CGFloat
public var verticalPadding: CoreGraphics.CGFloat
public var cornerRadius: CoreGraphics.CGFloat
public var titleFont: UIKit.UIFont
public var messageFont: UIKit.UIFont
public var titleAlignment: UIKit.NSTextAlignment
public var messageAlignment: UIKit.NSTextAlignment
public var titleNumberOfLines: Swift.Int
public var messageNumberOfLines: Swift.Int
public var displayShadow: Swift.Bool
public var shadowColor: UIKit.UIColor
public var shadowOpacity: Swift.Float {
get
set
}
public var shadowRadius: CoreGraphics.CGFloat
public var shadowOffset: CoreGraphics.CGSize
public var imageSize: CoreGraphics.CGSize
public var activitySize: CoreGraphics.CGSize
public var fadeDuration: Swift.Double
}
public struct EKAttributes {
public var name: Swift.String?
public var windowLevel: HHSDKVideo.EKAttributes.WindowLevel
public var position: HHSDKVideo.EKAttributes.Position
public var precedence: HHSDKVideo.EKAttributes.Precedence
public var displayDuration: Swift.Double
public var positionConstraints: HHSDKVideo.EKAttributes.PositionConstraints
public var screenInteraction: HHSDKVideo.EKAttributes.UserInteraction
public var entryInteraction: HHSDKVideo.EKAttributes.UserInteraction
public var scroll: HHSDKVideo.EKAttributes.Scroll
public var hapticFeedbackType: HHSDKVideo.EKAttributes.NotificationHapticFeedback
public var lifecycleEvents: HHSDKVideo.EKAttributes.LifecycleEvents
public var displayMode: HHSDKVideo.EKAttributes.DisplayMode
public var entryBackground: HHSDKVideo.EKAttributes.BackgroundStyle
public var screenBackground: HHSDKVideo.EKAttributes.BackgroundStyle
public var shadow: HHSDKVideo.EKAttributes.Shadow
public var roundCorners: HHSDKVideo.EKAttributes.RoundCorners
public var border: HHSDKVideo.EKAttributes.Border
public var statusBar: HHSDKVideo.EKAttributes.StatusBar
public var entranceAnimation: HHSDKVideo.EKAttributes.Animation
public var exitAnimation: HHSDKVideo.EKAttributes.Animation
public var popBehavior: HHSDKVideo.EKAttributes.PopBehavior {
get
set
}
public init()
}
@_inheritsConvenienceInitializers @objc public class HHMSDK : ObjectiveC.NSObject {
@objc public static let `default`: HHSDKVideo.HHMSDK
weak public var mCallDelegate: HHSDKVideo.HHCallDelegate?
weak public var mHHRTCDelegate: HHSDKVideo.HHRTCDelegate?
public var expertVideoCallback: (() -> Swift.Void)?
public var autoLoginCheck: (() -> Swift.Void)?
@objc public var photosPreview: ((Swift.Array<Swift.String>) -> Swift.Void)?
@objc public func start(option: HHSDKVideo.OptionProtocal, im: HHSDKVideo.HHIM, rtc: HHSDKVideo.HHRTC)
@objc public func login(userToken: Swift.String, completion: @escaping HHSDKBase.HHLoginHandler)
@objc public func autoLogin(uuid: Swift.Int, completion: @escaping HHSDKBase.HHLoginHandler)
@objc public func logout(_ callback: ((Swift.String?) -> Swift.Void)? = nil)
@objc public func terminate()
@objc public func add(delegate: HHSDKVideo.HHMVideoDelegate)
@objc public func remove(delegate: HHSDKVideo.HHMVideoDelegate)
@objc override dynamic public init()
@objc deinit
}
extension HHMSDK {
@objc dynamic public func startCall(_ type: HHSDKVideo.HHCallType = .adult, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
@objc dynamic public func startCall(_ uuid: Swift.Int, type: HHSDKVideo.HHCallType = .adult, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
}
extension HHMSDK {
@objc dynamic public func startTeamCall(_ type: HHSDKVideo.HHCallType, callee: HHSDKVideo.HHCallerInfo, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
}
extension HHMSDK {
public func sendBaseLog(ex: [Swift.String : Swift.String]? = nil, action: [Swift.String : Swift.String]? = nil)
}
@objc @_inheritsConvenienceInitializers public class CommentVC : HHSDKVideo.CommentBaseVC {
@objc override dynamic public func viewDidLoad()
public static func show(_ orderId: Swift.String, docId: Swift.String, uuid: Swift.Int?, type: HHSDKVideo.HHCallType?, _ model: HHSDKVideo.HHGetQuesetionModel?)
@objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
@objc required dynamic public init?(coder: Foundation.NSCoder)
@objc deinit
}
@objc @_inheritsConvenienceInitializers final public class EKRatingSymbolsContainerView : UIKit.UIView {
final public func setup(with message: HHSDKVideo.EKRatingMessage, externalSelection: @escaping HHSDKVideo.EKRatingMessage.Selection)
@objc override dynamic public init(frame: CoreGraphics.CGRect)
@objc required dynamic public init?(coder: Foundation.NSCoder)
@objc deinit
}
@objc final public class EKButtonBarView : UIKit.UIView {
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
public init(with buttonBarContent: HHSDKVideo.EKProperty.ButtonBarContent)
@objc override final public func layoutSubviews()
final public func expand()
final public func compress()
@objc override final public func traitCollectionDidChange(_ previousTraitCollection: UIKit.UITraitCollection?)
@objc override dynamic public init(frame: CoreGraphics.CGRect)
@objc deinit
}
public struct EKNotificationMessage {
public struct Insets {
public var contentInsets: UIKit.UIEdgeInsets
public var titleToDescription: CoreGraphics.CGFloat
public static var `default`: HHSDKVideo.EKNotificationMessage.Insets
}
public let simpleMessage: HHSDKVideo.EKSimpleMessage
public let auxiliary: HHSDKVideo.EKProperty.LabelContent?
public let insets: HHSDKVideo.EKNotificationMessage.Insets
public init(simpleMessage: HHSDKVideo.EKSimpleMessage, auxiliary: HHSDKVideo.EKProperty.LabelContent? = nil, insets: HHSDKVideo.EKNotificationMessage.Insets = .default)
}
extension EKAttributes {
public struct UserInteraction {
public typealias Action = () -> ()
public enum Default {
case absorbTouches
case delayExit(by: Foundation.TimeInterval)
case dismissEntry
case forward
}
public var defaultAction: HHSDKVideo.EKAttributes.UserInteraction.Default
public var customTapActions: [HHSDKVideo.EKAttributes.UserInteraction.Action]
public init(defaultAction: HHSDKVideo.EKAttributes.UserInteraction.Default = .absorbTouches, customTapActions: [HHSDKVideo.EKAttributes.UserInteraction.Action] = [])
public static var dismiss: HHSDKVideo.EKAttributes.UserInteraction {
get
}
public static var forward: HHSDKVideo.EKAttributes.UserInteraction {
get
}
public static var absorbTouches: HHSDKVideo.EKAttributes.UserInteraction {
get
}
public static func delayExit(by delay: Foundation.TimeInterval) -> HHSDKVideo.EKAttributes.UserInteraction
}
}
@objc final public class EKRatingMessageView : UIKit.UIView {
public init(with message: HHSDKVideo.EKRatingMessage)
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
@objc override dynamic public init(frame: CoreGraphics.CGRect)
@objc deinit
}
extension EKAttributes {
public enum Position {
case top
case bottom
case center
public var isTop: Swift.Bool {
get
}
public var isCenter: Swift.Bool {
get
}
public var isBottom: Swift.Bool {
get
}
public static func == (a: HHSDKVideo.EKAttributes.Position, b: HHSDKVideo.EKAttributes.Position) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
}
@objc public protocol HHRTC {
@objc optional func setOrderId(orderId: Swift.String)
@objc optional func startCall(callee: Swift.String, orderId: Swift.String?)
@objc optional func enterRoom(orderId: Swift.String)
@objc optional func switchLocalAudio(_ isOpen: Swift.Bool)
@objc optional func switchLocalVideo(_ isOpen: Swift.Bool, localView: UIKit.UIView)
@objc optional func openDoctorView(userId: Swift.String, view: UIKit.UIView)
@objc optional func closeDoctorView(userId: Swift.String)
@objc optional func switchCamera(_ isFront: Swift.Bool)
@objc optional func switchCameraFlash(_ isOpen: Swift.Bool)
@objc optional func sendMsg(isSignal: Swift.Bool, cmd: Swift.String, to: Swift.String, complete: ((Swift.String?) -> Swift.Void)?)
@objc optional func leaveRoom()
@objc optional func hangUp(callId: Swift.UInt64)
@objc optional func startRing(audioId: Swift.Int)
@objc optional func stopRing()
}
public struct VideoApi {
}
public enum RecordImgType : Swift.Int {
case medic
case check
case yingXiang
case video
public init?(rawValue: Swift.Int)
public typealias RawValue = Swift.Int
public var rawValue: Swift.Int {
get
}
}
extension UIControl.State : Swift.Hashable {
public var hashValue: Swift.Int {
get
}
}
public struct HHGetQuesetionModel : HHSDKBase.Mappable {
public var question: HHSDKVideo.HHQuesetionModel?
public var rate: [HHSDKVideo.rateModel]?
public init?(map: HHSDKBase.Map)
public init()
public mutating func mapping(map: HHSDKBase.Map)
public func isHaveQ() -> Swift.Bool
}
public struct HHQuesetionModel : HHSDKBase.Mappable {
public var answerOne: Swift.String?
public var answerTwo: Swift.String?
public var content: Swift.String?
public var id: Swift.Int?
public init?(map: HHSDKBase.Map)
public mutating func mapping(map: HHSDKBase.Map)
}
public struct rateModel : HHSDKBase.Mappable {
public var createTime: Swift.Int?
public var content: Swift.String?
public var state: Swift.Int?
public var id: Swift.Int?
public var answerOne: Swift.String?
public init?(map: HHSDKBase.Map)
public mutating func mapping(map: HHSDKBase.Map)
}
public struct NotifyInfo {
public init()
public var fromAccountId: Swift.String?
public var requestId: Swift.String?
public var channelId: Swift.String?
public var customInfo: Swift.String?
}
@objc final public class EKPopUpMessageView : UIKit.UIView {
public init(with message: HHSDKVideo.EKPopUpMessage)
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
@objc override final public func traitCollectionDidChange(_ previousTraitCollection: UIKit.UITraitCollection?)
@objc override dynamic public init(frame: CoreGraphics.CGRect)
@objc deinit
}
public struct EKColor : Swift.Equatable {
public var dark: UIKit.UIColor {
get
}
public var light: UIKit.UIColor {
get
}
public init(light: UIKit.UIColor, dark: UIKit.UIColor)
public init(_ unified: UIKit.UIColor)
public init(rgb: Swift.Int)
public init(red: Swift.Int, green: Swift.Int, blue: Swift.Int)
public func color(for traits: UIKit.UITraitCollection, mode: HHSDKVideo.EKAttributes.DisplayMode) -> UIKit.UIColor
public static func == (a: HHSDKVideo.EKColor, b: HHSDKVideo.EKColor) -> Swift.Bool
}
extension EKColor {
public var inverted: HHSDKVideo.EKColor {
get
}
public func with(alpha: CoreGraphics.CGFloat) -> HHSDKVideo.EKColor
public static var white: HHSDKVideo.EKColor {
get
}
public static var black: HHSDKVideo.EKColor {
get
}
public static var clear: HHSDKVideo.EKColor {
get
}
public static var standardBackground: HHSDKVideo.EKColor {
get
}
public static var standardContent: HHSDKVideo.EKColor {
get
}
}
@objc public protocol HHIM {
@objc func register(_ cerName: Swift.String?)
@objc func login(_ completion: ((Swift.Error?) -> Swift.Void)?)
@objc func autoLogin(_ completion: ((Swift.Error?) -> Swift.Void)?)
@objc func logout(_ callback: ((Swift.String?) -> Swift.Void)?)
@objc func canVideo() -> Swift.Bool
}
@objc public class EKImageNoteMessageView : HHSDKVideo.EKAccessoryNoteMessageView {
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
public init(with content: HHSDKVideo.EKProperty.LabelContent, imageContent: HHSDKVideo.EKProperty.ImageContent)
@objc override dynamic public init(frame: CoreGraphics.CGRect)
@objc deinit
}
public struct OrderModel : HHSDKBase.Mappable {
public var orderid: Swift.String?
public var price: Swift.Float?
public var buyServiceName: Swift.String?
public var expertId: Swift.String?
public var expertName: Swift.String?
public var patientName: Swift.String?
public init?(map: HHSDKBase.Map)
public mutating func mapping(map: HHSDKBase.Map)
}
@objc @_inheritsConvenienceInitializers public class EKAccessoryNoteMessageView : UIKit.UIView {
@objc override dynamic public init(frame: CoreGraphics.CGRect)
@objc required dynamic public init?(coder: Foundation.NSCoder)
@objc deinit
}
public struct EKAlertMessage {
public enum ImagePosition {
case top
case left
public static func == (a: HHSDKVideo.EKAlertMessage.ImagePosition, b: HHSDKVideo.EKAlertMessage.ImagePosition) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
public let imagePosition: HHSDKVideo.EKAlertMessage.ImagePosition
public let simpleMessage: HHSDKVideo.EKSimpleMessage
public let buttonBarContent: HHSDKVideo.EKProperty.ButtonBarContent
public init(simpleMessage: HHSDKVideo.EKSimpleMessage, imagePosition: HHSDKVideo.EKAlertMessage.ImagePosition = .top, buttonBarContent: HHSDKVideo.EKProperty.ButtonBarContent)
}
@objc public class EKNoteMessageView : UIKit.UIView {
public var horizontalOffset: CoreGraphics.CGFloat {
get
set
}
public var verticalOffset: CoreGraphics.CGFloat {
get
set
}
public init(with content: HHSDKVideo.EKProperty.LabelContent)
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
@objc override dynamic public init(frame: CoreGraphics.CGRect)
@objc deinit
}
@_hasMissingDesignatedInitializers final public class SwiftEntryKit {
public enum EntryDismissalDescriptor {
case specific(entryName: Swift.String)
case prioritizedLowerOrEqualTo(priority: HHSDKVideo.EKAttributes.Precedence.Priority)
case enqueued
case all
case displayed
}
public enum RollbackWindow {
case main
case custom(window: UIKit.UIWindow)
}
public typealias DismissCompletionHandler = () -> Swift.Void
final public class var window: UIKit.UIWindow? {
get
}
final public class var isCurrentlyDisplaying: Swift.Bool {
get
}
final public class func isCurrentlyDisplaying(entryNamed name: Swift.String? = nil) -> Swift.Bool
final public class var isQueueEmpty: Swift.Bool {
get
}
final public class func queueContains(entryNamed name: Swift.String? = nil) -> Swift.Bool
final public class func display(entry view: UIKit.UIView, using attributes: HHSDKVideo.EKAttributes, presentInsideKeyWindow: Swift.Bool = false, rollbackWindow: HHSDKVideo.SwiftEntryKit.RollbackWindow = .main)
final public class func display(entry viewController: UIKit.UIViewController, using attributes: HHSDKVideo.EKAttributes, presentInsideKeyWindow: Swift.Bool = false, rollbackWindow: HHSDKVideo.SwiftEntryKit.RollbackWindow = .main)
final public class func transform(to view: UIKit.UIView)
final public class func dismiss(_ descriptor: HHSDKVideo.SwiftEntryKit.EntryDismissalDescriptor = .displayed, with completion: HHSDKVideo.SwiftEntryKit.DismissCompletionHandler? = nil)
final public class func layoutIfNeeded()
@objc deinit
}
@objc public class EKXStatusBarMessageView : UIKit.UIView {
public init(leading: HHSDKVideo.EKProperty.LabelContent, trailing: HHSDKVideo.EKProperty.LabelContent)
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
@objc override dynamic public init(frame: CoreGraphics.CGRect)
@objc deinit
}
public struct EKRatingMessage {
public typealias Selection = (Swift.Int) -> Swift.Void
public var initialTitle: HHSDKVideo.EKProperty.LabelContent
public var initialDescription: HHSDKVideo.EKProperty.LabelContent
public var ratingItems: [HHSDKVideo.EKProperty.EKRatingItemContent]
public var buttonBarContent: HHSDKVideo.EKProperty.ButtonBarContent
public var selection: HHSDKVideo.EKRatingMessage.Selection!
public var selectedIndex: Swift.Int? {
get
set
}
public init(initialTitle: HHSDKVideo.EKProperty.LabelContent, initialDescription: HHSDKVideo.EKProperty.LabelContent, ratingItems: [HHSDKVideo.EKProperty.EKRatingItemContent], buttonBarContent: HHSDKVideo.EKProperty.ButtonBarContent, selection: HHSDKVideo.EKRatingMessage.Selection? = nil)
}
extension EKAttributes {
public struct LifecycleEvents {
public typealias Event = () -> Swift.Void
public var willAppear: HHSDKVideo.EKAttributes.LifecycleEvents.Event?
public var didAppear: HHSDKVideo.EKAttributes.LifecycleEvents.Event?
public var willDisappear: HHSDKVideo.EKAttributes.LifecycleEvents.Event?
public var didDisappear: HHSDKVideo.EKAttributes.LifecycleEvents.Event?
public init(willAppear: HHSDKVideo.EKAttributes.LifecycleEvents.Event? = nil, didAppear: HHSDKVideo.EKAttributes.LifecycleEvents.Event? = nil, willDisappear: HHSDKVideo.EKAttributes.LifecycleEvents.Event? = nil, didDisappear: HHSDKVideo.EKAttributes.LifecycleEvents.Event? = nil)
}
}
public enum HHIMCmd : Swift.String {
case audio
case video
case transfor
case accept
case call
case reject
case cancelCall
case pcCancel
case phoneCall
case busy
case waiting
case waitingTip
case agentTrans
case web_transform
case callWeb
case cancelCallWeb
case call_invite
case reject_invite
case cancel_invite
case exit_camera
case enter_camera
case conference_begin
case conference_end
public init?(rawValue: Swift.String)
public typealias RawValue = Swift.String
public var rawValue: Swift.String {
get
}
}
extension EKAttributes {
public enum DisplayMode {
case inferred
case light
case dark
public static func == (a: HHSDKVideo.EKAttributes.DisplayMode, b: HHSDKVideo.EKAttributes.DisplayMode) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
}
public struct EKSimpleMessage {
public let image: HHSDKVideo.EKProperty.ImageContent?
public let title: HHSDKVideo.EKProperty.LabelContent
public let description: HHSDKVideo.EKProperty.LabelContent
public init(image: HHSDKVideo.EKProperty.ImageContent? = nil, title: HHSDKVideo.EKProperty.LabelContent, description: HHSDKVideo.EKProperty.LabelContent)
}
@objc final public class EKFormMessageView : UIKit.UIView {
public init(with title: HHSDKVideo.EKProperty.LabelContent, textFieldsContent: [HHSDKVideo.EKProperty.TextFieldContent], buttonContent: HHSDKVideo.EKProperty.ButtonContent)
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
final public func becomeFirstResponder(with textFieldIndex: Swift.Int)
@objc override final public func traitCollectionDidChange(_ previousTraitCollection: UIKit.UITraitCollection?)
@objc override dynamic public init(frame: CoreGraphics.CGRect)
@objc deinit
}
public protocol HHRTCDelegate : ObjectiveC.NSObject {
func onEnterRoom()
func checkHasAccept(_ isCmd: Swift.Bool, volumn: Swift.Int)
func onOtherViewAvailable(_ availableUserId: Swift.String, isAvailable: Swift.Bool)
func onRemoteUserEnterRoom(_ userId: Swift.String)
func onRemoteUserLeaveRoom(_ userId: Swift.String)
func sendRTCLog(action: HHSDKVideo.TrtcLog, ex: Swift.String)
func esdablishByRTC(error: HHSDKVideo.TrtcError, reason: Swift.String)
func processMsg(cmd: HHSDKVideo.HHIMCmd, orderId: Swift.String)
func waitingChanged(_ waitingInfo: HHSDKVideo.HHWaitDoctorModel)
func waitingSuccess(_ doctorInfo: HHSDKVideo.HHDoctorModel, orderId: Swift.String)
func onTransform(_ transInfo: HHSDKVideo.HHWaitDoctorModel)
func onExitRoom()
func hangup()
func showRtsVideo() -> UIKit.UIView?
func hideRtsVideo(_ view: UIKit.UIView)
}
public enum TrtcLog : Swift.String {
case waitingRecall
case missMessage
case ignoreCall
case enterError
case doctorJoinRoom
case micDidReady
case netQuality
case signalError
case killEror
case netDown
case joinSuccess
case schedule
case noSchedule
case video_busy
case permit_error
case transform
public init?(rawValue: Swift.String)
public typealias RawValue = Swift.String
public var rawValue: Swift.String {
get
}
}
public enum TrtcError : Swift.String {
case callTimeOut
case rtcError
case enterRoomFail
public init?(rawValue: Swift.String)
public typealias RawValue = Swift.String
public var rawValue: Swift.String {
get
}
}
@objc public class EKProcessingNoteMessageView : HHSDKVideo.EKAccessoryNoteMessageView {
public var isProcessing: Swift.Bool {
get
set
}
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
public init(with content: HHSDKVideo.EKProperty.LabelContent, activityIndicator: UIKit.UIActivityIndicatorView.Style)
@objc override dynamic public init(frame: CoreGraphics.CGRect)
@objc deinit
}
public struct CallDoctorModel : HHSDKBase.Mappable {
public var doctor: HHSDKVideo.HHDoctorModel?
public var order: HHSDKVideo.OrderModel?
public var appoint: Swift.String?
public var pushFlowUrl: Swift.String?
public var realPatientUuid: Swift.Int?
public init?(map: HHSDKBase.Map)
public mutating func mapping(map: HHSDKBase.Map)
}
@_hasMissingDesignatedInitializers public class PermissionAlert {
@objc deinit
}
extension HHSDKVideo.HHMediaType : Swift.Equatable {}
extension HHSDKVideo.HHMediaType : Swift.Hashable {}
extension HHSDKVideo.HHMediaType : Swift.RawRepresentable {}
extension HHSDKVideo.EKAttributes.Animation.Translate.AnchorPosition : Swift.Hashable {}
extension HHSDKVideo.HHConsType : Swift.Equatable {}
extension HHSDKVideo.HHConsType : Swift.Hashable {}
extension HHSDKVideo.HHConsType : Swift.RawRepresentable {}
extension HHSDKVideo.PermissionStatus : Swift.Equatable {}
extension HHSDKVideo.PermissionStatus : Swift.Hashable {}
extension HHSDKVideo.PermissionStatus : Swift.RawRepresentable {}
extension HHSDKVideo.EKAttributes.Precedence.QueueingHeuristic : Swift.Equatable {}
extension HHSDKVideo.EKAttributes.Precedence.QueueingHeuristic : Swift.Hashable {}
extension HHSDKVideo.HHMCallingState : Swift.Equatable {}
extension HHSDKVideo.HHMCallingState : Swift.Hashable {}
extension HHSDKVideo.HHMCallingState : Swift.RawRepresentable {}
extension HHSDKVideo.HHCallType : Swift.Equatable {}
extension HHSDKVideo.HHCallType : Swift.Hashable {}
extension HHSDKVideo.HHCallType : Swift.RawRepresentable {}
extension HHSDKVideo.EKAttributes.NotificationHapticFeedback : Swift.Equatable {}
extension HHSDKVideo.EKAttributes.NotificationHapticFeedback : Swift.Hashable {}
extension HHSDKVideo.HHPagerViewTransformerType : Swift.Equatable {}
extension HHSDKVideo.HHPagerViewTransformerType : Swift.Hashable {}
extension HHSDKVideo.HHPagerViewTransformerType : Swift.RawRepresentable {}
extension HHSDKVideo.EKAttributes.PositionConstraints.Rotation.SupportedInterfaceOrientation : Swift.Equatable {}
extension HHSDKVideo.EKAttributes.PositionConstraints.Rotation.SupportedInterfaceOrientation : Swift.Hashable {}
extension HHSDKVideo.PermissionType : Swift.Equatable {}
extension HHSDKVideo.PermissionType : Swift.Hashable {}
extension HHSDKVideo.PermissionType : Swift.RawRepresentable {}
extension HHSDKVideo.EKAttributes.StatusBar : Swift.Equatable {}
extension HHSDKVideo.EKAttributes.StatusBar : Swift.Hashable {}
extension HHSDKVideo.hhToastPosition : Swift.Equatable {}
extension HHSDKVideo.hhToastPosition : Swift.Hashable {}
extension HHSDKVideo.EKAttributes.Position : Swift.Equatable {}
extension HHSDKVideo.EKAttributes.Position : Swift.Hashable {}
extension HHSDKVideo.RecordImgType : Swift.Equatable {}
extension HHSDKVideo.RecordImgType : Swift.Hashable {}
extension HHSDKVideo.RecordImgType : Swift.RawRepresentable {}
extension HHSDKVideo.EKAlertMessage.ImagePosition : Swift.Equatable {}
extension HHSDKVideo.EKAlertMessage.ImagePosition : Swift.Hashable {}
extension HHSDKVideo.HHIMCmd : Swift.Equatable {}
extension HHSDKVideo.HHIMCmd : Swift.Hashable {}
extension HHSDKVideo.HHIMCmd : Swift.RawRepresentable {}
extension HHSDKVideo.EKAttributes.DisplayMode : Swift.Equatable {}
extension HHSDKVideo.EKAttributes.DisplayMode : Swift.Hashable {}
extension HHSDKVideo.TrtcLog : Swift.Equatable {}
extension HHSDKVideo.TrtcLog : Swift.Hashable {}
extension HHSDKVideo.TrtcLog : Swift.RawRepresentable {}
extension HHSDKVideo.TrtcError : Swift.Equatable {}
extension HHSDKVideo.TrtcError : Swift.Hashable {}
extension HHSDKVideo.TrtcError : Swift.RawRepresentable {}