|
@@ -71,6 +71,16 @@
|
71
|
71
|
- (void)setFeatureFlag:(NSString *_Nonnull)flag withBoolean:(BOOL)value;
|
72
|
72
|
- (void)setFeatureFlag:(NSString *_Nonnull)flag withValue:(id _Nonnull)value;
|
73
|
73
|
|
|
74
|
+/**
|
|
75
|
+ * CallKit call handle, to be used when implementing incoming calls.
|
|
76
|
+ */
|
|
77
|
+@property (nonatomic, copy, nullable) NSString *callHandle;
|
|
78
|
+
|
|
79
|
+/**
|
|
80
|
+ * CallKit call UUID, to be used when implementing incoming calls.
|
|
81
|
+ */
|
|
82
|
+@property (nonatomic, copy, nullable) NSUUID *callUUID;
|
|
83
|
+
|
74
|
84
|
@end
|
75
|
85
|
|
76
|
86
|
@interface JitsiMeetConferenceOptions : NSObject
|
|
@@ -92,6 +102,9 @@
|
92
|
102
|
|
93
|
103
|
@property (nonatomic, nullable) JitsiMeetUserInfo *userInfo;
|
94
|
104
|
|
|
105
|
+@property (nonatomic, copy, nullable, readonly) NSString *callHandle;
|
|
106
|
+@property (nonatomic, copy, nullable, readonly) NSUUID *callUUID;
|
|
107
|
+
|
95
|
108
|
+ (instancetype _Nonnull)fromBuilder:(void (^_Nonnull)(JitsiMeetConferenceOptionsBuilder *_Nonnull))initBlock;
|
96
|
109
|
- (instancetype _Nonnull)init NS_UNAVAILABLE;
|
97
|
110
|
|